data-analysis
Installation
SKILL.md
Data Analysis Skill
Analyze data files (CSV, Excel) and produce actionable insights.
Quick Start
-
Read the file - Use appropriate library:
- CSV:
csvmodule orpandas.read_csv() - Excel:
pandas.read_excel()with openpyxl engine
- CSV:
-
Explore the data - Get shape, columns, dtypes, missing values
-
Generate insights - Calculate:
- Descriptive stats (mean, median, mode, std, min, max)
- Correlations between numeric columns
- Value counts for categorical columns
- Trends over time if date column exists