When analyzing tabular data, always: 1. Validate the shape of the input before computing statistics (check for empty data, all-null columns). 2. Distinguish numeric columns from categorical ones — apply appropriate stats to each type. 3. Report count alongside mean/min/max so the reader can assess sample size. 4. Flag outliers when max > 3× mean for any numeric column. 5. Return a structured dict, not free text, so downstream agents can reliably parse the output.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CorvinLabs/CorvinOS --skill data_analysis --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Data Analysis?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/corvinlabs-data-analysis)More formats (shields.io, HTML) on the badges page.
# data_analysis
When analyzing tabular data, always:
1. Validate the shape of the input before computing statistics (check for empty data, all-null columns).
2. Distinguish numeric columns from categorical ones — apply appropriate stats to each type.
3. Report count alongside mean/min/max so the reader can assess sample size.
4. Flag outliers when max > 3× mean for any numeric column.
5. Return a structured dict, not free text, so downstream agents can reliably parse the output.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!