csv-data-analyzer
Load, explore, clean, and analyze CSV data with statistical summaries
Best use case
csv-data-analyzer is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Load, explore, clean, and analyze CSV data with statistical summaries
Teams using csv-data-analyzer should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/csv-data-analyzer/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How csv-data-analyzer Compares
| Feature / Agent | csv-data-analyzer | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Load, explore, clean, and analyze CSV data with statistical summaries
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# CSV Data Analyzer
A comprehensive skill for loading, exploring, cleaning, and analyzing CSV datasets within research workflows. Designed for researchers who need to quickly understand the structure, quality, and statistical properties of tabular data before conducting deeper analysis.
## Overview
Research datasets commonly arrive as CSV files from instrument exports, survey platforms, government repositories, and collaborator handoffs. This skill provides a structured approach to the entire CSV analysis pipeline: ingestion, profiling, quality assessment, cleaning, transformation, and summary statistics. It emphasizes reproducibility by generating audit logs of every transformation applied to the raw data.
The skill supports datasets of varying complexity, from single-table survey results to multi-file longitudinal study exports with hundreds of columns. It works with standard Python data science libraries (pandas, numpy, scipy) and produces outputs suitable for inclusion in methods sections and supplementary materials.
## Data Loading and Initial Profiling
### Loading Strategies
```python
import pandas as pd
import numpy as np
def load_and_profile_csv(filepath: str, encoding: str = 'utf-8') -> dict:
"""
Load a CSV file and generate an initial data profile.
Handles common encoding issues and delimiter detection.
"""
# Try multiple encodings if default fails
encodings = [encoding, 'latin-1', 'utf-8-sig', 'cp1252']
df = None
for enc in encodings:
try:
df = pd.read_csv(filepath, encoding=enc, low_memory=False)
break
except (UnicodeDecodeError, pd.errors.ParserError):
continue
if df is None:
raise ValueError(f"Could not parse {filepath} with any supported encoding")
profile = {
'rows': len(df),
'columns': len(df.columns),
'memory_mb': df.memory_usage(deep=True).sum() / 1e6,
'dtypes': df.dtypes.value_counts().to_dict(),
'missing_pct': (df.isnull().sum() / len(df) * 100).to_dict(),
'duplicates': df.duplicated().sum(),
'column_names': df.columns.tolist()
}
return df, profile
```
### Column Type Inference
```python
def infer_semantic_types(df: pd.DataFrame) -> dict:
"""
Infer semantic column types beyond pandas dtypes.
Detects dates, identifiers, categorical, continuous, and text columns.
"""
semantic_types = {}
for col in df.columns:
nunique = df[col].nunique()
ratio = nunique / len(df) if len(df) > 0 else 0
if ratio > 0.95 and df[col].dtype == 'object':
semantic_types[col] = 'identifier'
elif nunique <= 20 and df[col].dtype in ['object', 'int64']:
semantic_types[col] = 'categorical'
elif df[col].dtype in ['float64', 'int64']:
semantic_types[col] = 'continuous'
elif pd.to_datetime(df[col], errors='coerce').notna().mean() > 0.8:
semantic_types[col] = 'datetime'
else:
semantic_types[col] = 'text'
return semantic_types
```
## Data Cleaning Pipeline
### Systematic Cleaning Steps
1. **Remove fully empty rows and columns**: Drop rows/columns where all values are NaN.
2. **Standardize column names**: Convert to snake_case, remove special characters.
3. **Handle missing data**: Assess missingness patterns (MCAR/MAR/MNAR) before choosing imputation strategy.
4. **Detect and handle duplicates**: Identify exact and near-duplicates using fuzzy matching.
5. **Validate value ranges**: Flag values outside expected domain ranges.
6. **Standardize categorical labels**: Merge inconsistent spellings (e.g., "Male", "male", "M").
```python
def clean_column_names(df: pd.DataFrame) -> pd.DataFrame:
"""Standardize column names to snake_case."""
import re
df.columns = [
re.sub(r'[^a-z0-9]+', '_', col.lower().strip()).strip('_')
for col in df.columns
]
return df
def assess_missingness(df: pd.DataFrame) -> pd.DataFrame:
"""Generate a missingness report for each column."""
report = pd.DataFrame({
'missing_count': df.isnull().sum(),
'missing_pct': (df.isnull().sum() / len(df) * 100).round(2),
'dtype': df.dtypes
})
report['action'] = report['missing_pct'].apply(
lambda x: 'drop' if x > 60 else ('impute' if x > 0 else 'ok')
)
return report.sort_values('missing_pct', ascending=False)
```
## Statistical Summary Generation
### Descriptive Statistics
```python
def generate_statistical_summary(df: pd.DataFrame) -> dict:
"""
Generate comprehensive descriptive statistics for all columns.
Includes measures of central tendency, dispersion, and distribution shape.
"""
numeric_cols = df.select_dtypes(include=[np.number])
summary = {
'numeric': numeric_cols.describe().T.assign(
skewness=numeric_cols.skew(),
kurtosis=numeric_cols.kurtosis(),
iqr=numeric_cols.quantile(0.75) - numeric_cols.quantile(0.25),
cv=numeric_cols.std() / numeric_cols.mean() # coefficient of variation
),
'categorical': {
col: df[col].value_counts().head(10).to_dict()
for col in df.select_dtypes(include=['object']).columns
},
'correlations': numeric_cols.corr().round(3)
}
return summary
```
### Normality and Distribution Testing
| Test | Use Case | Function |
|------|----------|----------|
| Shapiro-Wilk | Normality test (n < 5000) | `scipy.stats.shapiro()` |
| D'Agostino-Pearson | Normality test (n >= 5000) | `scipy.stats.normaltest()` |
| Kolmogorov-Smirnov | Compare to any distribution | `scipy.stats.kstest()` |
| Levene's test | Homogeneity of variance | `scipy.stats.levene()` |
## Best Practices for Reproducibility
- Always save the raw CSV separately; never overwrite original files.
- Log every cleaning step with timestamps in a transformation audit trail.
- Export cleaned datasets with a version suffix (e.g., `data_v2_cleaned.csv`).
- Include the cleaning script or notebook alongside the published dataset.
- Report the number of rows removed at each step in your methods section.
- Use `random_state` parameters consistently for any stochastic operations.
## References
- McKinney, W. (2022). *Python for Data Analysis* (3rd ed.). O'Reilly Media.
- Wickham, H. (2014). Tidy Data. *Journal of Statistical Software*, 59(10).
- Van den Broeck, J., et al. (2005). Data Cleaning: Detecting, Diagnosing, and Editing Data Abnormalities. *PLoS Medicine*, 2(10).Related Skills
json-data-visualizer
Guide to JSON Crack for visualizing complex JSON data structures
datagen-research-guide
AI-driven multi-agent research assistant for end-to-end studies
data-collection-automation
Automate survey deployment, data collection, and pipeline management
database-comparison-guide
Compare major academic databases and when to use each for research
wikidata-api-guide
Query Wikidata SPARQL for scholarly metadata, authors, and entities
datacite-api
Resolve dataset DOIs and query research data metadata via DataCite
crossref-event-data-api
Track scholarly mentions across the web via Crossref Event Data
metadata-skills
24 metadata & bibliometrics skills. Trigger: DOI resolution, citation metrics, author disambiguation, bibliometrics. Design: metadata APIs and bibliometric analysis tools for scholarly records.
dataverse-api
Deposit and discover research datasets via Harvard Dataverse API
ipums-microdata-api
Access harmonized census and survey microdata via the IPUMS API
astrophysics-data-guide
Astronomical data processing with Astropy, FITS files, and sky surveys
topology-data-analysis
Topological data analysis: persistent homology, Mapper, and TDA tools