eda-basic
Basic exploratory data analysis for pandas DataFrames
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "eda-basic"
description: "Basic exploratory data analysis for pandas DataFrames"
license: "MIT"
---
# EDA Basic Skill
This skill provides basic exploratory data analysis capabilities for pandas DataFrames.
## Usage Instructions
When the user asks for basic data analysis or EDA, use this skill's scripts.
### Available Scripts
#### 1. `basic_stats.py` - Generate basic statistics
**Required variables:**
- `df`: The pandas DataFrame to analyze
**Example usage:**
```python
# Make sure 'df' is defined with your DataFrame
exec(open('~/.dsagent/skills/eda-basic/scripts/basic_stats.py').read())
```
This script will output:
- Shape of the DataFrame
- Data types
- Missing value counts
- Basic statistics (describe)
#### 2. `plot_distributions.py` - Plot column distributions
**Required variables:**
- `df`: The pandas DataFrame to analyze
- `columns` (optional): List of columns to plot. If not set, plots all numeric columns.
**Example usage:**
```python
# Define df and optionally columns
df = your_dataframe
columns = ['price', 'quantity'] # Optional
exec(open('~/.dsagent/skills/eda-basic/scripts/plot_distributions.py').read())
```
## When to Use This Skill
Use this skill when:
- User asks for "basic analysis" or "EDA"
- User wants to understand the structure of their data
- User asks for statistics or distributionsMore General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

