Skip to content

Commit

Permalink
Fix Minimal example and ARIMA family heading (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
yibenhuang authored Nov 13, 2023
1 parent 1a84462 commit 5cef382
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ Vist our [Installation Guide](https://nixtla.github.io/statsforecast/docs/gettin
```python
from statsforecast import StatsForecast
from statsforecast.models import AutoARIMA
from statsforecast.utils import AirPassengersDF

df = AirPassengersDF
sf = StatsForecast(
models = [AutoARIMA(season_length = 12)],
freq = 'M'
Expand Down Expand Up @@ -114,7 +116,7 @@ Automatic forecasting tools search for the best parameters and select the best p
|[AutoCES](https://nixtla.github.io/statsforecast/src/core/models.html#autoces)||||||
|[AutoTheta](https://nixtla.github.io/statsforecast/src/core/models.html#autotheta)||||||

## ARIMA Family
### ARIMA Family
These models exploit the existing autocorrelations in the time series.

|Model | Point Forecast | Probabilistic Forecast | Insample fitted values | Probabilistic fitted values |
Expand Down Expand Up @@ -259,4 +261,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
4 changes: 3 additions & 1 deletion nbs/index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@
"```python\n",
"from statsforecast import StatsForecast\n",
"from statsforecast.models import AutoARIMA\n",
"from statsforecast.utils import AirPassengersDF\n",
"\n",
"df = AirPassengersDF\n",
"sf = StatsForecast(\n",
" models = [AutoARIMA(season_length = 12)],\n",
" freq = 'M'\n",
Expand Down Expand Up @@ -176,7 +178,7 @@
"|[AutoTheta](https://nixtla.github.io/statsforecast/src/core/models.html#autotheta)|✅|✅|✅|✅|✅|\n",
": {tbl-colwidths=\"[75,25]\"}\n",
"\n",
"## ARIMA Family\n",
"### ARIMA Family\n",
"These models exploit the existing autocorrelations in the time series.\n",
"\n",
"|Model | Point Forecast | Probabilistic Forecast | Insample fitted values | Probabilistic fitted values |\n",
Expand Down

0 comments on commit 5cef382

Please sign in to comment.