← スキル一覧に戻る

performing-eda
by KevinGastelum
⭐ 0🍴 0📅 2026年1月18日
SKILL.md
name: performing-eda description: Conducts Exploratory Data Analysis (EDA) on datasets. Use when the user asks to "explore", "clean", or "visualize" a new CSV or dataset.
Performing EDA (Exploratory Data Analysis)
When to use this skill
- User uploads a
.csvor.jsonfile and asks "what's in here?". - User wants to "check for missing values" or "see distributions".
- Debugging model performance by analyzing training data.
Workflow
- Load: Read file into Pandas DataFrame.
- Inspect Structure:
df.info(),df.head(),df.describe(). - Clean: Handle missing values (
NaN), duplicates, and incorrect types. - Univariate Analysis: Histograms/Boxplots for single variables.
- Bivariate Analysis: Correlation matrix, Scatter plots for relationships.
- Report: Summarize findings (Outliers, Trends, Data Quality).
Instructions
1. Standard Inspection Script (Python)
Use the model environment or a temporary script.
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
def quick_eda(filepath):
df = pd.read_csv(filepath)
print("--- INFO ---")
print(df.info())
print("\n--- DESCRIBE ---")
print(df.describe())
# Check nulls
nulls = df.isnull().sum()
if nulls.sum() > 0:
print("\n--- NULLS ---")
print(nulls[nulls > 0])
return df
2. Visualization Standards
- Use Seaborn for statistical plots (nicer defaults than matplotlib).
- Correlation Heatmap: Critical for finding redundant features.
- Pairplot: Useful for small feature sets (< 10 features).
3. Notebooks vs Scripts
- Only create
.ipynbfiles if the user explicitly asks for a notebook or "interactive exploration". - Otherwise, write a
.pyscript that outputs text summaries and saves plot images to aplots/folder.
Resources
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です