Skip to content

Commit

Permalink
forecast update
Browse files Browse the repository at this point in the history
  • Loading branch information
BerendBouvy committed Nov 29, 2024
1 parent 382a0ee commit 959b8a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion book/time_series/forecasting.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ In summary, given a time series $Y=\mathrm{Ax}+\epsilon$, the workflow is as fol

3. Predict the signal-of-interest: $\hat{Y}_{signal}=\mathrm{A}_p\hat{X}$, where $\mathrm{A}_p$ is the design matrix describing the functional relationship between the future values $Y_p$ and $\mathrm{x}$.

4. Predict the noise $\hat{\epsilon}_p$ based on the AR model.
4. Predict the noise $\hat{\epsilon}_p$ based on the AR model. $\hat{\epsilon}_p = \Sigma_{Y_pY}\Sigma_Y^{-1}\hat{\epsilon}$, where $\Sigma_{Y_pY}$ is the covariance matrix between the future values $Y_p$ and the observed values $Y$.

5. Predict future values of the time series: $\hat{Y}_p=\mathrm{A}_p\hat{X}+\hat{\epsilon}_p$.

```(note)
This procedure is a general approach to forecasting time series data. It resembles the process of stochastic inter- and extrapolation, which is used in many fields of science and engineering.
```

0 comments on commit 959b8a6

Please sign in to comment.