Course Content
Time Series Analysis
Time Series Analysis
1. Time Series: Let's Start
2. Time Series Processing
3. Time Series Visualization
Challenge
Task
Swipe to begin your solution
Create an autoregressive model to predict the dataset aapl.csv
. After, print the results and the model error.
- Read the
aapl.csv
dataset. - Create an autoregressive model (
AutoReg
) with 3 lags for theX
data and assign it to themodel
variable. - Fit model to the data and assign it to the
model_fit
variable. - Predict the first 30 values.
- Visualize the results: display the first 30 values of
X
within the first call of theprint()
function, and first 30 values of thepredictions
within the second call. - Calculate the RMSE (square root of the mean squared error) and display it.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 5
Challenge
Task
Swipe to begin your solution
Create an autoregressive model to predict the dataset aapl.csv
. After, print the results and the model error.
- Read the
aapl.csv
dataset. - Create an autoregressive model (
AutoReg
) with 3 lags for theX
data and assign it to themodel
variable. - Fit model to the data and assign it to the
model_fit
variable. - Predict the first 30 values.
- Visualize the results: display the first 30 values of
X
within the first call of theprint()
function, and first 30 values of thepredictions
within the second call. - Calculate the RMSE (square root of the mean squared error) and display it.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 5
Switch to desktop for real-world practiceContinue from where you are using one of the options below