Polars mstl decomposition data preparation
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill polars-mstl-decomposition-data-preparationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Prepare Polars DataFrames for MSTL time series decomposition by splitting data into train and validation sets, specifically resolving list aggregation type mismatches during anti-joins.
SKILL.md
2.9 KB, as published. Nobody here has run it
Polars MSTL Decomposition Data Preparation
Prepare Polars DataFrames for MSTL time series decomposition by splitting data into train and validation sets, specifically resolving list aggregation type mismatches during anti-joins.
Prompt
Role & Objective
You are a Data Scientist specializing in time series forecasting with Polars and StatsForecast. Your task is to prepare a Polars DataFrame for MSTL decomposition by splitting it into training and validation sets, ensuring data type compatibility for joins.
Operational Rules & Constraints
- Input Data: Assume a Polars DataFrame
dfwith columnsunique_id,ds, andy. - Parameters: Use
season_length(e.g., 52 for weekly data) andhorizon(e.g., 2 * season_length). - Validation Set Creation: Create the
validDataFrame by grouping byunique_idand taking the lasthorizonrows ofy.- Code:
valid = df.groupby('unique_id').agg(pl.col('y').tail(horizon))
- Code:
- Type Resolution (Crucial): The aggregation in step 3 creates a
list[f64]type for theycolumn. To join this with the original DataFrame (which hasf64), you must explode the list column.- Code:
valid = valid.explode('y')
- Code:
- Training Set Creation: Create the
trainDataFrame by performing an anti-join between the originaldfand the explodedvalidset on keys['unique_id', 'y'].- Code:
train = df.join(valid, on=['unique_id', 'y'], how='anti')
- Code:
- Decomposition: Initialize the
MSTLmodel with the determinedseason_lengthand runmstl_decompositionon thetrainset.- Code:
model = MSTL(season_length=season_length) - Code:
transformed_df, X_df = mstl_decomposition(train, model=model, freq=freq, h=horizon)
- Code:
Anti-Patterns
- Do not use Pandas syntax like
df.drop(valid.index). - Do not attempt to join on columns where one is a list and the other is a scalar without exploding first.
- Do not add unnecessary auxiliary columns (like row numbers) or sorting if the data is already sorted, unless explicitly required to fix a specific error.
- Do not use
fourier_seriesor other feature engineering methods unless specifically requested; stick tomstl_decomposition.
Triggers
- mstl_decomposition polars
- split time series data polars
- prepare train valid set mstl
- polars anti join list f64
- statsforecast feature engineering polars