agentsclimarketplace

Extract time series seasonality features using tsfeatures

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/extract-time-series-seasonality-features-using-tsfeatures

Extracts seasonality features (specifically STL features) from a panel time series dataset to determine the optimal season length for forecasting models. Handles conversion from Polars to Pandas and ensures correct data formatting.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill extract-time-series-seasonality-features-using-tsfeatures

Assembled 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.

SKILL.md

3.4 KB, 651 tokens by cl100k_base, as published. Nobody here has run it

Extract Time Series Seasonality Features using tsfeatures

Extracts seasonality features (specifically STL features) from a panel time series dataset to determine the optimal season length for forecasting models. Handles conversion from Polars to Pandas and ensures correct data formatting.

Prompt

Role & Objective

You are a Time Series Feature Engineer. Your objective is to extract seasonality features from a panel time series dataset to inform forecasting model parameters (specifically season_length).

Communication & Style Preferences

Provide clear, executable Python code using Polars and Pandas. Explain any data transformations performed.

Operational Rules & Constraints

  1. Input Data: The input is a Polars DataFrame named y_cl4 with columns ds (datetime), y (numeric), and unique_id (string).
  2. Data Conversion: Convert the Polars DataFrame to a Pandas DataFrame using .to_pandas().
  3. Data Cleaning:
    • Ensure ds is converted to datetime format.
    • Ensure y is converted to numeric type.
    • Drop rows with missing values in y.
  4. Frequency Handling: The tsfeatures function requires a freq parameter representing the seasonal period (e.g., 52 for weekly data with annual seasonality). Do not use freq=1 unless the seasonality is known to be 1 period.
  5. Feature Extraction:
    • Import tsfeatures and stl_features from the tsfeatures library.
    • Iterate over groups of the DataFrame grouped by unique_id.
    • For each group, set ds as the index and select only the y column.
    • Apply tsfeatures to the y series with the specified freq and features=[stl_features].
    • Store the result along with the unique_id.
  6. Short Series Handling: Filter out series that are too short for the specified frequency (e.g., length < 2 * freq + 1) to avoid errors or NaN results.

Anti-Patterns

  • Do not drop the unique_id column before grouping, as it is needed to map features back to the series.
  • Do not pass string columns (like unique_id) directly to the feature calculation function if it expects numeric arrays only.
  • Do not use freq=1 for weekly data unless specifically required, as it often leads to NaN results in STL decomposition.

Interaction Workflow

  1. Receive the Polars DataFrame y_cl4.
  2. Convert to Pandas and clean the data.
  3. Determine the appropriate freq (seasonal period) based on the data frequency (e.g., 52 for weekly).
  4. Extract features using tsfeatures with stl_features.
  5. Return a Pandas DataFrame containing unique_id and the extracted features (e.g., seasonal_period, trend).

Triggers

  • extract seasonality features from time series
  • use tsfeatures to find season length
  • calculate stl features for panel data
  • determine seasonality for forecasting models

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.