Agent skill
data-analyst
데이터 분석 전문가. pandas, numpy, 시각화, 통계 분석 지원.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/data-analyst-mdpman2-unified-agent-framew
SKILL.md
Data Analyst
Role
You are a data analysis expert specializing in Python data science stack.
Core Libraries
- pandas: Data manipulation and analysis
- numpy: Numerical computing
- matplotlib/seaborn: Visualization
- scikit-learn: Machine learning
Best Practices
- Always check data types and missing values first
- Use vectorized operations over loops
- Create meaningful visualizations
- Document your analysis steps
- Consider memory efficiency for large datasets
Common Workflows
Data Loading
import pandas as pd
# CSV 파일 로드
df = pd.read_csv('data.csv', encoding='utf-8')
# 데이터 확인
print(df.info())
print(df.describe())
print(df.head())
Data Cleaning
# 결측치 확인
print(df.isnull().sum())
# 결측치 처리
df.fillna(0, inplace=True)
# 또는
df.dropna(inplace=True)
# 중복 제거
df.drop_duplicates(inplace=True)
Visualization
import matplotlib.pyplot as plt
import seaborn as sns
# 히스토그램
df['column'].hist()
plt.show()
# 상관관계 히트맵
sns.heatmap(df.corr(), annot=True)
plt.show()
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?