ARIMA quizzes

pull/34/head
Jen Looper 4 years ago
parent 108e45e7f4
commit 1161ef0430

@ -156,7 +156,7 @@ Now you need to follow several steps
1. Define the model by calling `SARIMAX()` and passing in the model parameters: p, d, and q parameters, and P, D, and Q parameters. 1. Define the model by calling `SARIMAX()` and passing in the model parameters: p, d, and q parameters, and P, D, and Q parameters.
1. The model is prepared on the training data by calling the fit() function. 1. The model is prepared on the training data by calling the fit() function.
2. Predictions can be made by calling the `forecast()` function and specifying the number of steps (the `horizon`) to forecast 1. Predictions can be made by calling the `forecast()` function and specifying the number of steps (the `horizon`) to forecast
> 🎓 What are all these parameters for? In an ARIMA model there are 3 parameters that are used to help model the major aspects of a time series: seasonality, trend, and noise. These parameters are: > 🎓 What are all these parameters for? In an ARIMA model there are 3 parameters that are used to help model the major aspects of a time series: seasonality, trend, and noise. These parameters are:

@ -2193,49 +2193,53 @@
"title": "Time Series ARIMA: Pre-Lecture Quiz", "title": "Time Series ARIMA: Pre-Lecture Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "q1", "questionText": "ARIMA stands for",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "AutoRegressive Integral Moving Average",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "b", "answerText": "AutoRegressive Integrated Moving Action",
"isCorrect": "true" "isCorrect": "false"
}, },
{ {
"answerText": "c", "answerText": "AutoRegressive Integrated Moving Average",
"isCorrect": "false" "isCorrect": "true"
} }
] ]
}, },
{ {
"questionText": "q2", "questionText": "Stationarity refers to",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "data whose attributes does not change when shifted in time",
"isCorrect": "false"
},
{
"answerText": "data whose distribution does not change when shifted in time",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "b", "answerText": "data whose distribution changes when shifted in time",
"isCorrect": "false" "isCorrect": "false"
} }
] ]
}, },
{ {
"questionText": "q3", "questionText": "Differencing",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "stabilizes trend and seasonality",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "b", "answerText": "exacerbates trend and seasonality",
"isCorrect": "true" "isCorrect": "false"
}, },
{ {
"answerText": "c", "answerText": "eliminates trend and seasonality",
"isCorrect": "false" "isCorrect": "true"
} }
] ]
} }
@ -2246,48 +2250,52 @@
"title": "Time Series ARIMA: Post-Lecture Quiz", "title": "Time Series ARIMA: Post-Lecture Quiz",
"quiz": [ "quiz": [
{ {
"questionText": "q1", "questionText": "ARIMA is used to make a model fit the special form of time series data",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "as flat as possible",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "b", "answerText": "as closely as possible",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "c", "answerText": "via scatterplots",
"isCorrect": "false" "isCorrect": "false"
} }
] ]
}, },
{ {
"questionText": "q2", "questionText": "Use SARIMAX to",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "manage seasonal ARIMA models",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "b", "answerText": "manage special ARIMA models",
"isCorrect": "false"
},
{
"answerText": "manage statistical ARIMA models",
"isCorrect": "false" "isCorrect": "false"
} }
] ]
}, },
{ {
"questionText": "q3", "questionText": "'Walk-Forward' validation involves",
"answerOptions": [ "answerOptions": [
{ {
"answerText": "a", "answerText": "re-evaluating a model progressively as it is validated",
"isCorrect": "false" "isCorrect": "false"
}, },
{ {
"answerText": "b", "answerText": "re-training a model progressively as it is validated",
"isCorrect": "true" "isCorrect": "true"
}, },
{ {
"answerText": "c", "answerText": "re-configuring a model progressively as it is validated",
"isCorrect": "false" "isCorrect": "false"
} }
] ]

Loading…
Cancel
Save