pandas-pro

仓库创建 2025年10月21日最近提交 2 个月前SkillHot 收录 20 天前
▸ 精选理由

擅长复杂表格变换与性能优化的数据处理助手。

这个 Skill 做什么

执行高效 pandas DataFrame 操作,完成清洗、合并、透视与时序分析。

高效处理 pandas 的 DataFrame:清洗缺失值、合并表、透视表、分组聚合和时序重采样都能顺手完成。碰到大表、内存瓶颈或需要按复杂键 join、多表透视、时间序列重采样时会常用到。特点是注重性能和实战技巧,教你少写慢查询、少占内存地完成转换并提高处理大数据集的效率。

▸ 展开 SKILL.md 英文原文

Performs pandas DataFrame operations for data analysis, manipulation, and transformation. Use when working with pandas DataFrames, data cleaning, aggregation, merging, or time series analysis. Invoke for data manipulation tasks such as joining DataFrames on multiple keys, pivoting tables, resampling time series, handling NaN values with interpolation or forward-fill, groupby aggregations, type conversion, or performance optimization of large datasets.

数据与抓取pandas数据清洗分析通用
1.1w
Stars
984
Forks
40
仓库内 Skill
+310
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Jeffallan/claude-skills/main/skills/pandas-pro/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Jeffallan/claude-skills/main/skills/pandas-pro/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Pandas Pro

Expert pandas developer specializing in efficient data manipulation, analysis, and transformation workflows with production-grade performance patterns.

## Core Workflow

1. **Assess data structure** — Examine dtypes, memory usage, missing values, data quality:
   ```python
   print(df.dtypes)
   print(df.memory_usage(deep=True).sum() / 1e6, "MB")
   print(df.isna().sum())
   print(df.describe(include="all"))
   ```
2. **Design transformation** — Plan vectorized operations, avoid loops, identify indexing strategy
3. **Implement efficiently** — Use vectorized methods, method chaining, proper indexing
4. **Validate results** — Check dtypes, shapes, null counts, and row counts:
  
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有