How to extract information on year when data is in quarterly format

3 ビュー (過去 30 日間)
Raamasrinivas Venkata
Raamasrinivas Venkata 2019 年 10 月 30 日
編集済み: Nicolas B. 2019 年 10 月 30 日
My data is in the following format:
Year
1971-Q1
1971-Q2
1971-Q3
1971-Q4
1972-Q1
1972-Q2
1972-Q3
1972-Q4... until the 4th quarter of 2018. I have data on inflation and unemployment for this period and would like to plot it in the same graph with 'Year' on the xaxis. How do I extract only the years to a seperate variable, ie, the first four numbers of the variable 'Year' ?

回答 (1 件)

Nicolas B.
Nicolas B. 2019 年 10 月 30 日
編集済み: Nicolas B. 2019 年 10 月 30 日
have you thought about using extractBefore() function?
For example:
function year = extractYear(s)
year = str2double(extractBefore(s, '-'));
end

カテゴリ

Help Center および File ExchangeTime Series についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by