一键导入
pandas-eda-workflow
Pandas EDA skill - Covers data loading, cleaning, transformation, aggregation, and visualization workflows used in real-world data analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Pandas EDA skill - Covers data loading, cleaning, transformation, aggregation, and visualization workflows used in real-world data analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
This skill should be used when users need help with Git, GitHub workflows, pull requests, branching strategies, repository contributions, and open source collaboration.
FastAPI Python backend for LLM Arena game server. Use when working on API endpoints, LLM provider integration via LiteLLM, game move processing, prompt engineering for AI players, error handling, or backend testing.
React 19 + Vite frontend for LLM Arena game visualization. Use when working on UI components, game board rendering, state management with hooks, API integration, Tailwind CSS v4 styling, Framer Motion animations, or frontend build configuration.
Full-stack LLM Arena application for AI vs AI game battles. Use when working on project-wide configurations, deployment, architecture decisions, or coordinating between frontend and backend. Covers Tic-Tac-Toe and Reversi games with OpenAI, Anthropic, and Google Gemini support.
Audits mobile app codebases for pre-release readiness across iOS (Swift/SwiftUI/UIKit), Android (Kotlin/Jetpack Compose), Flutter (Dart), and React Native. Produces a ship / ship-with-caveats / block verdict backed by findings in six layers — privacy & permissions, accessibility, localization, crash-prone code, store metadata, and release-build hygiene. Use when given a mobile app repo (or parts of one) and asked to review, audit, pre-flight, check if ready to ship, prepare for App Store or Play Store submission, run a release checklist, do an accessibility or privacy compliance review, or diagnose a likely store rejection. Also use when user mentions TestFlight, beta submission, privacy manifest, PrivacyInfo.xcprivacy, Data Safety form, ATT prompt, content rating, age rating, export compliance, Info.plist audit, AndroidManifest audit, or "why will this get rejected".
Assistant for designing, building, and optimizing Power BI semantic models. Helps with data architecture decisions, DAX formula development, relationship configuration, performance tuning, and implementation of analytics best practices. Triggers on questions about model design patterns, metric calculations, schema optimization, data integrity, security frameworks, and documentation standards.
| name | pandas-eda-workflow |
| description | Pandas EDA skill - Covers data loading, cleaning, transformation, aggregation, and visualization workflows used in real-world data analysis. |
Pandas is a powerful data analysis library in Python used for handling structured data.
This skill walks through a practical Exploratory Data Analysis (EDA) workflow using Pandas, including inspecting data, cleaning it, transforming features, and generating basic visual insights.
Use this when you're working on:
pip install pandas matplotlib seaborn
import pandas as pd
df = pd.read_csv("resources/dataset.csv")
df.head()
df.info()
df.describe()
df.shape
df.columns
df.dtypes
df.head()
df.tail()
df.sample(5)
df.info()
df.describe()
df.isnull().sum()
df = df.dropna()
df.fillna(df.mean(), inplace=True)
df.rename(columns={"old_name": "new_name"}, inplace=True)
df.drop_duplicates(inplace=True)
df["column"] = df["column"].astype(int)
df[df["age"] > 25]
df[(df["age"] > 25) & (df["salary"] > 50000)]
df.groupby("department")["salary"].mean()
df.groupby("department").agg({
"salary": "mean",
"age": "max"
})
df.sort_values(by="salary", ascending=False)
df["bonus"] = df["salary"] * 0.1
Using Matplotlib and Seaborn:
df["age"].hist()
import seaborn as sns
sns.boxplot(x=df["salary"])
sns.heatmap(df.corr(), annot=True)
df[["name", "salary"]]
df["salary"] = df["salary"].apply(lambda x: x * 1.1)
.loc and .iloc correctly