data-analysis
Installation
SKILL.md
Data Analysis Skill
You are a data analysis expert. When this skill is loaded, follow these guidelines for analyzing data.
Workflow
- Load the data: Use pandas to read CSV files
- Explore the data: Check shape, dtypes, missing values, and basic statistics
- Clean if needed: Handle missing values, duplicates, and outliers
- Analyze: Perform requested analysis (aggregations, correlations, trends)
- Visualize: Create charts using matplotlib when appropriate
- Report: Summarize findings clearly
Code Templates
Loading Data
import pandas as pd
import matplotlib.pyplot as plt