zoo::yearqtr
Seen most often in financial and business settings, the concept of 'quarters of a year' is important in time series analysis. The zoo package introduces the yearqtr class, which stores both the year and quarter components of a date.
In this exercise, you'll work with quarterly sales data, quarterly_data, and an index of dates of observations, date_index_quarter, with each observation occurring each quarter of the year (every three months).
The above datasets, as well as the ggplot2, zoo, and lubridate packages are available to you.
Cet exercice fait partie du cours
Manipulating Time Series Data in R
Instructions
Create an index,
index_yearqtr, by converting thedate_index_quartervector to theyearqtrclass.Create
quarterly_sales, azoobased on the data inquarterly_dataand the index you created,index_yearqtr.Add the x-axis label
"Quarter", the y-axis label"Quarterly Sum ($100k)", and the title"Quarterly Sales Report".
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Create a year-quarter index
___
# Create the quarterly_sales zoo object
___
# Autoplot with axis labels and a title
___