|
19 | 19 | "\n", |
20 | 20 | "## Prerequisites\n", |
21 | 21 | "\n", |
22 | | - "This tutorial assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](../getting-started/1_Getting_Started_short)\n", |
| 22 | + "This tutorial assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](../getting-started/getting_started_short.html)\n", |
23 | 23 | ":::" |
24 | 24 | ] |
25 | 25 | }, |
|
32 | 32 | "\n", |
33 | 33 | "**Exogenous regressors** are variables that can affect the values of a time series. They may not be directly related to the variable that is being forecasted, but they can still have an impact on it. Examples of exogenous regressors are weather data, economic indicators, or promotional sales. They are typically collected from external sources and by incorporating them into a forecasting model, they can improve the accuracy of our predictions. \n", |
34 | 34 | "\n", |
35 | | - "By the end of this tutorial, you'll have a good understanding of how to incorporate exogenous regressors into [StatsForecast](../../models)'s models. Furthermore, you'll see how to evaluate their performance and decide whether or not they can help enhance the forecast. " |
| 35 | + "By the end of this tutorial, you'll have a good understanding of how to incorporate exogenous regressors into [StatsForecast](../../src/core/models.html)'s models. Furthermore, you'll see how to evaluate their performance and decide whether or not they can help enhance the forecast. " |
36 | 36 | ] |
37 | 37 | }, |
38 | 38 | { |
|
74 | 74 | "id": "91cea3f0-d72b-4015-9c23-6009b63a493f", |
75 | 75 | "metadata": {}, |
76 | 76 | "source": [ |
77 | | - "We assume that you have StatsForecast already installed. If not, check this guide for instructions on [how to install StatsForecast](../getting-started/0_Installation)." |
| 77 | + "We assume that you have StatsForecast already installed. If not, check this guide for instructions on [how to install StatsForecast](../getting-started/installation.html)." |
78 | 78 | ] |
79 | 79 | }, |
80 | 80 | { |
|
137 | 137 | "id": "4481392d-59a9-4179-b28b-7179a551bb8b", |
138 | 138 | "metadata": {}, |
139 | 139 | "source": [ |
140 | | - "We can plot the sales of this product-store combination with the `statsforecast.plot` method from the [StatsForecast](../../core#class-statsforecast) class. This method has multiple parameters, and the required ones to generate the plots in this notebook are explained below. \n", |
| 140 | + "We can plot the sales of this product-store combination with the `statsforecast.plot` method from the [StatsForecast](../../src/core/core.html#statsforecast) class. This method has multiple parameters, and the required ones to generate the plots in this notebook are explained below. \n", |
141 | 141 | "\n", |
142 | 142 | "- `df`: A pandas dataframe with columns [`unique_id`, `ds`, `y`].\n", |
143 | 143 | "- `forecasts_df`: A pandas dataframe with columns [`unique_id`, `ds`] and models.\n", |
|
0 commit comments