|
34 | 34 | "source": [ |
35 | 35 | ":::{.callout-warning collapse=\"true\"}\n", |
36 | 36 | "## Prerequisites\n", |
37 | | - "This Guide assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](./Getting_Started_short)\n", |
| 37 | + "This Guide assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](./getting_started_short.html)\n", |
38 | 38 | ":::\n", |
39 | 39 | "\n", |
40 | 40 | "Follow this article for a step-by-step guide on building a production-ready forecasting pipeline for multiple time series. \n", |
|
59 | 59 | "## Not Covered in this guide\n", |
60 | 60 | "\n", |
61 | 61 | "* Forecasting at scale using clusters on the cloud. \n", |
62 | | - " * [Forecast the M5 Dataset in 5min](../experiments/ETS_ray_m5) using Ray clusters.\n", |
63 | | - " * [Forecast the M5 Dataset in 5min](../experiments/Prophet_spark_m5) using Spark clusters.\n", |
| 62 | + " * [Forecast the M5 Dataset in 5min](../experiments/ets_ray_m5.html) using Ray clusters.\n", |
| 63 | + " * [Forecast the M5 Dataset in 5min](../experiments/prophet_spark_m5.html) using Spark clusters.\n", |
64 | 64 | " * Learn how to predict [1M series in less than 30min](https://www.anyscale.com/blog/how-nixtla-uses-ray-to-accurately-predict-more-than-a-million-time-series).\n", |
65 | 65 | "\n", |
66 | 66 | "* Training models on Multiple Seasonalities. \n", |
67 | | - " * Learn to use multiple seasonality in this [Electricity Load forecasting](../tutorials/ElectricityLoadForecasting) tutorial.\n", |
| 67 | + " * Learn to use multiple seasonality in this [Electricity Load forecasting](../tutorials/electricityloadforecasting.html) tutorial.\n", |
68 | 68 | "\n", |
69 | 69 | "* Using external regressors or exogenous variables\n", |
70 | | - " * Follow this tutorial to [include exogenous variables](../how-to-guides/Exogenous) like weather or holidays or static variables like category or family. \n", |
| 70 | + " * Follow this tutorial to [include exogenous variables](../how-to-guides/exogenous.html) like weather or holidays or static variables like category or family. \n", |
71 | 71 | "\n", |
72 | 72 | "* Comparing StatsForecast with other popular libraries.\n", |
73 | 73 | " * You can reproduce our benchmarks [here](https://github.com/Nixtla/statsforecast/tree/main/experiments).\n", |
|
80 | 80 | "source": [ |
81 | 81 | "## Install libraries\n", |
82 | 82 | "\n", |
83 | | - "We assume you have StatsForecast already installed. Check this guide for instructions on [how to install StatsForecast](./0_Installation)." |
| 83 | + "We assume you have StatsForecast already installed. Check this guide for instructions on [how to install StatsForecast](./installation.html)." |
84 | 84 | ] |
85 | 85 | }, |
86 | 86 | { |
|
278 | 278 | "\n", |
279 | 279 | "* **Theta Models:** fit two theta lines to a deseasonalized time series, using different techniques to obtain and combine the two theta lines to produce the final forecasts. Examples: Theta, DynamicTheta\n", |
280 | 280 | "\n", |
281 | | - "Here you can check the complete list of [models](../models_intro.qmd).\n", |
| 281 | + "Here you can check the complete list of [models](../../src/core/models_intro.html).\n", |
282 | 282 | "\n", |
283 | 283 | "For this example we will use:\n", |
284 | 284 | "\n", |
|
337 | 337 | "source": [ |
338 | 338 | "We fit the models by instantiating a new `StatsForecast` object with the following parameters:\n", |
339 | 339 | "\n", |
340 | | - "* `models`: a list of models. Select the models you want from [models](../../src/core/models_intro) and import them.\n", |
| 340 | + "* `models`: a list of models. Select the models you want from [models](../../src/core/models_intro.html) and import them.\n", |
341 | 341 | "\n", |
342 | 342 | "* `freq`: a string indicating the frequency of the data. (See [panda's available frequencies](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases).) This is also available with Polars.\n", |
343 | 343 | "\n", |
|
0 commit comments