Source profileQuality 93/100

K-Dense-AI/scientific-agent-skills/skills/polars/SKILL.md

polars

High-performance DataFrame library for Python ETL, analytics, and pandas migration. Use for expression-based data manipulation with lazy query optimization, parallel execution, streaming out-of-core processing, Arrow interoperability, and optional GPU execution.

Source repository stars
34,478
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-26

Decision brief

What it does: where it fits

High-performance DataFrame library for Python ETL, analytics, and pandas migration. Use for expression-based data manipulation with lazy query optimization, parallel execution, streaming out-of-core processing, Arrow interoperability, and optional GPU execution.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/K-Dense-AI/scientific-agent-skills --skill "skills/polars"
    Safe inspection promptEditorial

    Inspect the Agent Skill "polars" from https://github.com/K-Dense-AI/scientific-agent-skills/blob/36d8f13a1e754618794bf42f417884940077b4ae/skills/polars/SKILL.md at commit 36d8f13a1e754618794bf42f417884940077b4ae. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Quick Start

      Install the current stable Polars release verified during this refresh:

      Install the current stable Polars release verified during this refresh:Install optional integrations only when needed:Basic DataFrame creation and operations: python import polars as pl
    2. 02

      Installation and Basic Usage

      Install the current stable Polars release verified during this refresh:

      Install the current stable Polars release verified during this refresh:Install optional integrations only when needed:Basic DataFrame creation and operations: python import polars as pl
    3. 03

      Create DataFrame

      df = pl.DataFrame({ "name": ["Alice", "Bob", "Charlie"], "age": [25, 30, 35], "city": ["NY", "LA", "SF"] })

      df = pl.DataFrame({ "name": ["Alice", "Bob", "Charlie"], "age": [25, 30, 35], "city": ["NY", "LA", "SF"] })
    4. 04

      Select columns

      df.select("name", "age")

      df.select("name", "age")
    5. 05

      Filter rows

      df.filter(pl.col("age") 25)

      df.filter(pl.col("age") 25)

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars34,478SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    K-Dense-AI/scientific-agent-skills
    Skill path
    skills/polars/SKILL.md
    Commit
    36d8f13a1e754618794bf42f417884940077b4ae
    License
    MIT
    Collected
    2026-08-26
    Default branch
    main
    View the original SKILL.md

    Polars

    Overview

    Polars is a lightning-fast DataFrame library for Python and Rust built on Apache Arrow. Work with Polars' expression-based API, lazy evaluation framework, and high-performance data manipulation capabilities for efficient data processing, pandas migration, and data pipeline optimization.

    Quick Start

    Installation and Basic Usage

    Install the current stable Polars release verified during this refresh:

    uv pip install "polars==1.41.2"
    

    Install optional integrations only when needed:

    uv pip install "polars[excel,database,fsspec,pandas,numpy]==1.41.2"
    

    Basic DataFrame creation and operations:

    import polars as pl
    
    # Create DataFrame
    df = pl.DataFrame({
        "name": ["Alice", "Bob", "Charlie"],
        "age": [25, 30, 35],
        "city": ["NY", "LA", "SF"]
    })
    
    # Select columns
    df.select("name", "age")
    
    # Filter rows
    df.filter(pl.col("age") > 25)
    
    # Add computed columns
    df.with_columns(
        age_plus_10=pl.col("age") + 10
    )
    

    Core Concepts

    Expressions

    Expressions are the fundamental building blocks of Polars operations. They describe transformations on data and can be composed, reused, and optimized.

    Key principles:

    • Use pl.col("column_name") to reference columns
    • Chain methods to build complex transformations
    • Expressions are lazy and only execute within contexts (select, with_columns, filter, group_by)

    Example:

    # Expression-based computation
    df.select(
        pl.col("name"),
        (pl.col("age") * 12).alias("age_in_months")
    )
    

    Lazy vs Eager Evaluation

    Eager (DataFrame): Operations execute immediately

    df = pl.read_csv("file.csv")  # Reads immediately
    result = df.filter(pl.col("age") > 25)  # Executes immediately
    

    Lazy (LazyFrame): Operations build a query plan, optimized before execution

    lf = pl.scan_csv("file.csv")  # Doesn't read yet
    result = lf.filter(pl.col("age") > 25).select("name", "age")
    df = result.collect()  # Now executes optimized query
    

    When to use lazy:

    • Working with large datasets
    • Complex query pipelines
    • When only some columns/rows are needed
    • Performance is critical

    Benefits of lazy evaluation:

    • Automatic query optimization
    • Predicate pushdown
    • Projection pushdown
    • Parallel execution

    For detailed concepts, load references/core_concepts.md.

    Common Operations

    Select

    Select and manipulate columns:

    # Select specific columns
    df.select("name", "age")
    
    # Select with expressions
    df.select(
        pl.col("name"),
        (pl.col("age") * 2).alias("double_age")
    )
    
    # Select all columns matching a pattern
    df.select(pl.col("^.*_id$"))
    

    Filter

    Filter rows by conditions:

    # Single condition
    df.filter(pl.col("age") > 25)
    
    # Multiple conditions (cleaner than using &)
    df.filter(
        pl.col("age") > 25,
        pl.col("city") == "NY"
    )
    
    # Complex conditions
    df.filter(
        (pl.col("age") > 25) | (pl.col("city") == "LA")
    )
    

    With Columns

    Add or modify columns while preserving existing ones:

    # Add new columns
    df.with_columns(
        age_plus_10=pl.col("age") + 10,
        name_upper=pl.col("name").str.to_uppercase()
    )
    
    # Parallel computation (all columns computed in parallel)
    df.with_columns(
        pl.col("value") * 10,
        pl.col("value") * 100,
    )
    

    Group By and Aggregations

    Group data and compute aggregations:

    # Basic grouping
    df.group_by("city").agg(
        pl.col("age").mean().alias("avg_age"),
        pl.len().alias("count")
    )
    
    # Multiple group keys
    df.group_by("city", "department").agg(
        pl.col("salary").sum()
    )
    
    # Conditional aggregations
    df.group_by("city").agg(
        (pl.col("age") > 30).sum().alias("over_30")
    )
    

    For detailed operation patterns, load references/operations.md.

    Aggregations and Window Functions

    Aggregation Functions

    Common aggregations within group_by context:

    • pl.len() - count rows
    • pl.col("x").sum() - sum values
    • pl.col("x").mean() - average
    • pl.col("x").min() / pl.col("x").max() - extremes
    • pl.first() / pl.last() - first/last values

    Window Functions with over()

    Apply aggregations while preserving row count:

    # Add group statistics to each row
    df.with_columns(
        avg_age_by_city=pl.col("age").mean().over("city"),
        rank_in_city=pl.col("salary").rank().over("city")
    )
    
    # Multiple grouping columns
    df.with_columns(
        group_avg=pl.col("value").mean().over("category", "region")
    )
    

    Mapping strategies:

    • group_to_rows (default): Preserves original row order
    • explode: Faster but groups rows together
    • join: Creates list columns

    Data I/O

    Supported Formats

    Polars supports reading and writing:

    • CSV, Parquet, JSON, Excel
    • Databases (via connectors)
    • Cloud storage (S3, Azure, GCS)
    • Google BigQuery
    • Multiple/partitioned files

    Common I/O Operations

    CSV:

    # Eager
    df = pl.read_csv("file.csv")
    df.write_csv("output.csv")
    
    # Lazy (preferred for large files)
    lf = pl.scan_csv("file.csv")
    result = lf.filter(...).select(...).collect()
    

    Parquet (recommended for performance):

    df = pl.read_parquet("file.parquet")
    df.write_parquet("output.parquet")
    

    JSON:

    df = pl.read_json("file.json")
    df.write_json("output.json")
    

    For comprehensive I/O documentation, load references/io_guide.md.

    Transformations

    Joins

    Combine DataFrames:

    # Inner join
    df1.join(df2, on="id", how="inner")
    
    # Left join
    df1.join(df2, on="id", how="left")
    
    # Join on different column names
    df1.join(df2, left_on="user_id", right_on="id")
    

    Concatenation

    Stack DataFrames:

    # Vertical (stack rows)
    pl.concat([df1, df2], how="vertical")
    
    # Horizontal (add columns)
    pl.concat([df1, df2], how="horizontal")
    
    # Diagonal (union with different schemas)
    pl.concat([df1, df2], how="diagonal")
    

    Pivot and Unpivot

    Reshape data:

    # Pivot (wide format)
    df.pivot(on="product", values="sales", index="date")
    
    # Unpivot (long format)
    df.unpivot(index="id", on=["col1", "col2"])
    

    For detailed transformation examples, load references/transformations.md.

    Pandas Migration

    Polars offers significant performance improvements over pandas with a cleaner API. Key differences:

    Conceptual Differences

    • No index: Polars uses integer positions only
    • Strict typing: No silent type conversions
    • Lazy evaluation: Available via LazyFrame
    • Parallel by default: Operations parallelized automatically

    Common Operation Mappings

    OperationPandasPolars
    Select columndf["col"]df.select("col")
    Filterdf[df["col"] > 10]df.filter(pl.col("col") > 10)
    Add columndf.assign(x=...)df.with_columns(x=...)
    Group bydf.groupby("col").agg(...)df.group_by("col").agg(...)
    Windowdf.groupby("col").transform(...)df.with_columns(...).over("col")

    Key Syntax Patterns

    Pandas sequential (slow):

    df.assign(
        col_a=lambda df_: df_.value * 10,
        col_b=lambda df_: df_.value * 100
    )
    

    Polars parallel (fast):

    df.with_columns(
        col_a=pl.col("value") * 10,
        col_b=pl.col("value") * 100,
    )
    

    For comprehensive migration guide, load references/pandas_migration.md.

    Best Practices

    Performance Optimization

    1. Use lazy evaluation for large datasets:

      lf = pl.scan_csv("large.csv")  # Don't use read_csv
      result = lf.filter(...).select(...).collect()
      
    2. Avoid Python functions in hot paths:

      • Stay within expression API for parallelization
      • Use .map_elements() only when necessary
      • Prefer native Polars operations
    3. Use streaming for very large data:

      lf.collect(engine="streaming")
      
    4. Select only needed columns early:

      # Good: Select columns early
      lf.select("col1", "col2").filter(...)
      
      # Bad: Filter on all columns first
      lf.filter(...).select("col1", "col2")
      
    5. Use appropriate data types:

      • Categorical for low-cardinality strings
      • Appropriate integer sizes (i32 vs i64)
      • Date types for temporal data

    Expression Patterns

    Conditional operations:

    pl.when(condition).then(value).otherwise(other_value)
    

    Column operations across multiple columns:

    df.select(pl.col("^.*_value$") * 2)  # Regex pattern
    

    Null handling:

    pl.col("x").fill_null(0)
    pl.col("x").is_null()
    pl.col("x").drop_nulls()
    

    For additional best practices and patterns, load references/best_practices.md.

    Resources

    This skill includes comprehensive reference documentation:

    references/

    • core_concepts.md - Detailed explanations of expressions, lazy evaluation, and type system
    • operations.md - Comprehensive guide to all common operations with examples
    • pandas_migration.md - Complete migration guide from pandas to Polars
    • io_guide.md - Data I/O operations for all supported formats
    • transformations.md - Joins, concatenation, pivots, and reshaping operations
    • best_practices.md - Performance optimization tips and common patterns

    Load these references as needed when users require detailed information about specific topics.

    Frequently asked questions

    What to verify before installation and use

    What does the polars source document cover?

    High-performance DataFrame library for Python ETL, analytics, and pandas migration. Use for expression-based data manipulation with lazy query optimization, parallel execution, streaming out-of-core processing, Arrow interoperability, and optional GPU execution.

    How do I install polars?

    The source record exposes this install command: npx skills add https://github.com/K-Dense-AI/scientific-agent-skills --skill "skills/polars". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 933,338

    synthetic-sciences/openscience

    polars

    Fast in-memory DataFrame library for datasets that fit in RAM. Use when pandas is too slow but data still fits in memory. Lazy evaluation, parallel execution, Apache Arrow backend. Best for 1-100GB datasets, ETL pipelines, faster pandas replacement. For larger-than-RAM data use dask or vaex.

    Computed 9834,478

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

    Computed 97149

    UiPath/skills

    uipath-coded-apps

    UiPath Coded Apps — scaffold, build, run, and deploy Coded Web Apps and Coded Action Apps: React/TypeScript apps that call UiPath Cloud APIs via the `@uipath/uipath-typescript` SDK and ship to Automation Cloud (push/pull to Studio Web, pack, publish, deploy, OAuth-PKCE). Also generates live analytics & governance dashboards from a plain-language request, wired to tenant data via the Insights real-time API, with edit and deploy flows. For RPA→uipath-rpa, Python agents→uipath-agents, Maestro flows

    Computed 96870

    awslabs/agent-plugins

    dsql

    Build with Aurora DSQL — manage schemas, execute queries, handle migrations, diagnose query plans, diagnose cluster performance, load data, and develop applications with a serverless, distributed SQL database. Covers IAM auth, multi-tenant patterns, MySQL-to-DSQL and PostgreSQL-to-DSQL schema conversion, FK replacement code generation, OCC retry patterns, ORM migration (Django/EF Core/Hibernate/Rails), DDL operations, query plan explainability, system diagnostics via CloudWatch AAS, SQL compatib