How to extract information on year when data is in quarterly format
    1 view (last 30 days)
  
       Show older comments
    
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' ?
0 Comments
Answers (1)
  Nicolas B.
      
 on 30 Oct 2019
        
      Edited: Nicolas B.
      
 on 30 Oct 2019
  
      For example:
function year = extractYear(s)
    year = str2double(extractBefore(s, '-'));  
end
0 Comments
See Also
Categories
				Find more on Language Fundamentals in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!