pandas-polars-eda

pandas-polars-eda is a skill for Claude Code, Codex from hamzabellouch/agent-skills. It costs 61 tokens per session (1,560 once invoked), scanned A, original, MIT.

A guide to exploratory data analysis, the process of inspecting and summarizing a dataset, using Pandas and Polars in Python.

In plain words
What is it for?
Use it to profile and clean tables, detect outliers, examine correlations, compare distributions, and build memory-conscious data-processing pipelines.
Why use it?
It helps reveal missing values, unusual records, distributions, and relationships before modeling or making decisions from the data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to profile and clean tables, detect outliers, examine correlations, compare distributions, and build memory-conscious data-processing pipelines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hamzabellouch/agent-skills/pandas-polars-eda
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hamzabellouch/agent-skills --skill pandas-polars-eda
Clone the repo
git clone --depth 1 https://github.com/hamzabellouch/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pandas-polars-eda

README.md
[![agentmods](https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/pandas-polars-eda/github.svg)](https://agentmods.dev/skills/hamzabellouch/agent-skills/pandas-polars-eda)
Your own site
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/pandas-polars-eda"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/pandas-polars-eda/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pandas-polars-eda

Your own site · 80×15
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/pandas-polars-eda"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/pandas-polars-eda.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,560 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.01560
Opus 5 $0.00030 $0.00780
Sonnet 5 $0.00012 $0.00312
Haiku 4.5 $0.00006 $0.00156

Measured 8d ago against content hash 560b87935422, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

pandas-polars-eda scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Data Science and Exploratory Analysis/pandas-polars-eda/SKILL.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pandas & Polars EDA Skill Guide

This skill provides production standards, high-performance code patterns, memory optimizations, and data hygiene rules for performing Exploratory Data Analysis (EDA) using Pandas and Polars.


1. Engine Comparison: Pandas vs Polars

+-----------------------+---------------------------------------+---------------------------------------+
| Feature               | Pandas (2.0+ with PyArrow)             | Polars                                |
+-----------------------+---------------------------------------+---------------------------------------+
| **Execution Engine**  | Single-threaded eager execution       | Multi-threaded query optimization     |
| **Memory Model**      | In-memory numpy / arrow backend       | Apache Arrow columnar format native   |
| **Evaluation Mode**   | Eager only                            | Eager & Lazy evaluation (`lazy()`)    |
| **Performance**       | Moderate on datasets > 1GB            | Extremely fast (10x-30x speedups)     |
+-----------------------+---------------------------------------+---------------------------------------+

2. Automated Data Health & Missing Value Profiling

A. Polars Health Check Pipeline

import polars as pl

def profile_polars_dataframe(df: pl.DataFrame) -> pl.DataFrame:
    """Generate comprehensive dataset health report in Polars."""
    null_counts = df.null_count()
    dtypes = pl.DataFrame({"column": df.columns, "dtype": [str(d) for d in df.dtypes]})
    
    stats = df.describe()
    
    summary = dtypes.with_columns(
        null_count=pl.Series([df[col].null_count() for col in df.columns]),
        null_percentage=pl.Series([round((df[col].null_count() / df.height) * 100, 2) for col in df.columns]),
        n_unique=pl.Series([df[col].n_unique() for col in df.columns]),
    )
    return summary

# Usage
df = pl.read_parquet("sales_data.parquet")
health_report = profile_polars_dataframe(df)
print(health_report)

B. Pandas PyArrow Data Profiling

Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 167 lines · 61 tokens per session scan A 560b87935422

Subscribe to this mod's changes

pandas-polars-eda is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 1,560 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

spec-create

Create a structured feature specification with self-contained task files organized into parallel execution batches. Use this skill when the user says "create a spec", "plan this feature", "write up an implementation plan", "break this into tasks", or after any planning conversation where the user wants to capture…

benjaminthomas/spec-driven-dev · 118 tokens

spec-implement

Orchestrate parallel implementation of a feature specification by dispatching coder agents batch-by-batch with code review gates between batches. Use this skill when the user says "implement this feature", "start implementing", "run the spec", "execute the plan", "continue implementing", or wants to begin coding a…

benjaminthomas/spec-driven-dev · 130 tokens

spec-ship

Push the current branch to GitHub and create a pull request. Use this skill when the user says "ship it", "ship this", "push to github", "create a pr", "open a pull request", "send for review", "get this reviewed", or wants to push their work and open a PR. Also use when the user says "/spec-ship" (or their host's…

benjaminthomas/spec-driven-dev · 119 tokens

spec-checkpoint

Create a comprehensive checkpoint commit with detailed analysis of all changes. Use this skill when the user says "checkpoint", "commit everything", "save my progress", "create a commit", or wants to stage and commit all current changes with a well-crafted message. Also use when the user says "/spec-checkpoint" (or…

benjaminthomas/spec-driven-dev · 98 tokens

generative-seo

Run an evidence-based SEO + GEO (Generative Engine Optimization) program for ANY website or product codebase — auditing technical SEO, writing or retrofitting content so it gets cited by ChatGPT/Perplexity/AI Overviews, tracking AI-citation visibility, refreshing competitor research, and drafting distribution posts.…

benjaminthomas/spec-driven-dev · 180 tokens

spec-verify

Verify a completed feature spec by driving the real running app — not just lint/typecheck/build — and checking off every acceptance criterion from its specs/{feature}/ folder one by one. Use this after /spec-implement finishes a spec, when the user says "test this end to end", "verify this feature actually works"…

benjaminthomas/spec-driven-dev · 210 tokens