
When working with Time Series Data it is useful to consider if the time measurement is quantitative discrete or quantitative continuous.
Discrete Time Series Data is often presented using bar graphs where the x-axis is time.
Sometimes stacked bar graphs are used to subset the data within the time period, day/month/year.
This is how graphs are often presented in the Wall Street Journal and other newspapers.
Continuous Time Series Data is often presented using time plots where the x-axis is time.
Sometimes multiple time series are presented on a sigle time plot. Sometimes with different scales, right and left.
The dots are connected!
This is how graphs are often presented in the Wall Street Journal and other newspapers.
What do we look for in time series data?
Basic models
Additive model \[ Y_t = T_t + S_t + I_t \]
Multiplicative model \[ Y_t = T_t*S_t*I_t \]
What would a log transformation do to the multiplicative model?
In R
decompose()
or
stl()
What is autocorrelation?
What is crosscorelation?
What is an autoregression model?
From Shumway and Stoffer
library(astsa)
ts.plot(jj, type= 'o', main = "Quarterly Earnings per Share, Johnson & Johnson")
ts.plot(log(jj), type='o',"Quarterly Log-Earnings per Share, J & J")