Loading...
Loading...
Generate statistical analysis code with 4-round review. Select appropriate statistical tests, interpret results, and produce analysis reports with p-values, effect sizes, and confidence intervals. Use when analyzing experimental data for a paper.
npx skill4agent add lingzhi227/agent-research-skills data-analysis$0$1~/.claude/skills/data-analysis/references/review-prompts.mdpython ~/.claude/skills/data-analysis/scripts/stat_summary.py --input results.csv --compare method --metric accuracy --output summary.json
python ~/.claude/skills/data-analysis/scripts/stat_summary.py --input results.csv --describepython ~/.claude/skills/data-analysis/scripts/format_pvalue.py --values "0.001 0.05 0.23" --format stars
python ~/.claude/skills/data-analysis/scripts/format_pvalue.py --csv results.csv --column pvalue --format latex# IMPORT# LOAD DATA# DATASET PREPARATIONS# DESCRIPTIVE STATISTICS# PREPROCESSING# ANALYSIS# SAVE ADDITIONAL RESULTSpandasnumpyscipystatsmodelssklearnpickle| Data Type | Test |
|---|---|
| Two groups, normal | Independent t-test |
| Two groups, non-normal | Mann-Whitney U |
| Paired samples | Paired t-test / Wilcoxon |
| Multiple groups | ANOVA / Kruskal-Wallis |
| Categorical | Chi-square / Fisher's exact |
| Correlation | Pearson / Spearman |
| Regression | OLS / Logistic / Mixed effects |
formula = "y ~ a * b"