generate_series
| Name | Type | Description | Default |
|---|---|---|---|
n_series | int | Number of series for synthetic panel. | required |
freq | str | Frequency of the data (pandas alias). Seasonalities are implemented for hourly, daily and monthly. Defaults to ‘D’. | ‘D’ |
min_length | int | Minimum length of synthetic panel’s series. Defaults to 50. | 50 |
max_length | int | Maximum length of synthetic panel’s series. Defaults to 500. | 500 |
n_static_features | int | Number of static exogenous variables for synthetic panel’s series. Defaults to 0. | 0 |
equal_ends | bool | Series should end in the same timestamp. Defaults to False. | False |
with_trend | bool | Series should have a (positive) trend. Defaults to False. | False |
static_as_categorical | bool | Static features should have a categorical data type. Defaults to True. | True |
n_models | int | Number of models predictions to simulate. Defaults to 0. | 0 |
level | list of float | Confidence level for intervals to simulate for each model. Defaults to None. | None |
engine | str | Output Dataframe type. Defaults to ‘pandas’. | ‘pandas’ |
seed | int | Random seed used for generating the data. Defaults to 0. | 0 |
| Type | Description |
|---|---|
DataFrame | pandas or polars DataFrame: Synthetic panel with columns [unique_id, ds, y] and exogenous features. |

