How to extract information on year when data is in quarterly format
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Nicolas B.
le 30 Oct 2019
Modifié(e) : Nicolas B.
le 30 Oct 2019
For example:
function year = extractYear(s)
year = str2double(extractBefore(s, '-'));
end
0 commentaires
Voir également
Catégories
En savoir plus sur Language Fundamentals dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!