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

3 次查看(过去 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 CenterFile Exchange 中查找有关 Time Series 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by