Skip to content

Commit ae03a89

Browse files
authored
Update 16_AR.ipynb
typo
1 parent acae29d commit ae03a89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

16_AR.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"\n",
1515
"ARIMA is an abbreviation for <font color='orange'>autoregressive integrated moving average</font> and these models are what the tin says: they include autoregressive, differencing, and moving average components.\n",
1616
"\n",
17-
"A common way to work with time series data, is to decompose it into the trend and seasonality components, and then model thre residual random effect with ARIMA. We can view the trend and seasonality parts as the fixed effect of the model, and the residual effect as the random effect:\n",
17+
"A common way to work with time series data, is to decompose it into the trend and seasonality components, and then model the residual random effect with ARIMA. We can view the trend and seasonality parts as the fixed effect of the model, and the residual effect as the random effect:\n",
1818
"\n",
1919
"$$\n",
2020
"\\begin{align*}\n",
@@ -25,7 +25,7 @@
2525
"\n",
2626
"Here $r$ is the seasonality period.\n",
2727
"\n",
28-
"In this lecture we are interested in looking at time series structure through the temporal random effects lens. I.e. we assume that that trend and seasonality have already been deducted $x_t := y_t - \\mu_t$. We will consider a specific subclass of ARIMA family. Namely, the autoregressive models.\n",
28+
"In this lecture we are interested in looking at time series structure through the temporal random effects lens. I.e. we assume that trend and seasonality have already been deducted $x_t := y_t - \\mu_t$. We will consider a specific subclass of ARIMA family. Namely, the autoregressive models.\n",
2929
"\n",
3030
"<font color='orange'>Autoregressive</font> models are statistical models that use a linear combination of past observations of a time series $x_{t-1}, x_{t-2},... $ to predict future values, where each observation is regressed on previous observations.\n",
3131
"\n",
@@ -617,7 +617,7 @@
617617
"source": [
618618
"## Random walk model\n",
619619
"\n",
620-
"Another class of widely used models for time series datat is the random walk. It is a stochastic process where future values are dependent on the current value and a random shock. Here's a description of the random walk model:\n",
620+
"Another class of widely used models for time series data is the random walk. It is a stochastic process where future values are dependent on the current value and a random shock. Here's a description of the random walk model:\n",
621621
"\n",
622622
"$$\n",
623623
"x_t = x_{t-1} + \\epsilon_t.\n",

0 commit comments

Comments
 (0)