Skill detail
data-analysis
General tabular statistics, filtering, aggregation, and correlation.
Inspect before use
Automated review checks relevance, not safety or endorsement. Read the source instructions before using this skill.
SKILL.md
The saved excerpt is a snapshot from review. The external source remains the complete and most current version.
---
name: data-analysis
description: Analyze CSV/JSON data with statistics, filtering, and aggregation. Powered by pandas and numpy.
compatibility: Requires Python 3.x with pandas, numpy
license: MIT
metadata:
author: skilllite-init
version: "1.0"
---
# Data Analysis Skill
Perform statistical analysis on tabular data using pandas and numpy.
## Supported Operations
- **describe**: Summary statistics (mean, std, min, max, etc.)
- **filter**: Filter rows by column conditions
- **aggregate**: Group-by aggregation (sum, mean, count, etc.)
- **correlate**: Correlation matrix between numeric columns
## Usage
```json
{"operation": "describe", "data": [[1,2],[3,4]], "columns": ["a","b"]}
```
Read the full source on GitHub (opens external page)