What problem does it solve?
This Skill helps you write faster, more reliable data processing pipelines by replacing slow pandas workflows with Polars’ parallel and lazy execution.
Core Features & Use Cases
- Fast eager and lazy DataFrame operations: Build expressions, then run them eagerly or as an optimized query plan.
- Scalable ETL patterns: Perform filtering, selection pushdown, joins, group-bys, window functions, and reshaping efficiently on in-memory datasets.
- Practical migration guidance: Convert common pandas idioms (select/filter/assign/groupby/transform) into Polars equivalents while avoiding performance anti-patterns.
Quick Start
Use the polars skill to migrate your pandas pipeline to a faster lazy Polars flow by running: scan a CSV, filter rows, select only needed columns, and collect results into a DataFrame.