Results Analysis
Run strict, evidence-first experimental analysis for ML/AI research.
Use this skill to produce a strict analysis bundle:
analysis-report.md
stats-appendix.md
figure-catalog.md
figures/
Do not use this skill to draft a paper Results section or a full experiment wrap-up report. Those belong to ml-paper-writing or results-report.
Core contract
This skill is responsible for
- validating experiment artifacts and comparison units,
- running rigorous descriptive and inferential statistics,
- generating real scientific figures when data/logs are available,
- writing figure purposes, caption requirements, and interpretation checklists,
- surfacing limits, blockers, and missing evidence explicitly.
This skill is not responsible for
- paper-ready
Results prose,
- manuscript narrative polishing,
- paper-ready figure/table packaging with
pubfig / pubtab,
- project-level experiment retrospectives.
If the user wants the complete post-experiment summary report, hand off to results-report after this bundle is ready. If the user wants publication-grade figures/tables, export parameters, publication QA, or figure/table redesign, hand off to publication-chart-skill.
Non-negotiable quality bar
- Prefer real figures over figure specs.
If the data can be read, generate real figures. Do not stop at “recommended visualization”.
- Never fabricate statistics.
If sample size, seeds, or raw metrics are missing, state the blocker clearly.
- Report complete statistics.
Do not report only best scores or only p-values.
- Interpret every main figure.
Every major figure must have purpose, caption requirements, and post-figure interpretation notes.
- Separate evidence from prose.
This skill produces analysis artifacts; it does not write manuscript sections.
Standard workflow
1. Inventory and validate artifacts
Start by identifying:
- metric tables (
csv, json, tsv, logs),
- training curves and checkpoints,
- seeds / repeated runs,
- baselines, ablations, and comparison families,
- evaluation protocol metadata.
Validate:
- metric direction (higher/lower is better),
- unit of analysis (run, subject, fold, dataset, seed),
- number of runs / seeds,
- missing values or silent failures,
- comparability across methods.
If the comparison is not statistically valid, say so before continuing.
2. Lock the comparison questions
Before running statistics, define the exact comparison questions:
- Which method is compared to which baseline?
- What is the primary metric?
- What is the repeated-measure unit?
- Which ablation or robustness questions matter?
- Which findings are decision-changing?
Do not mix unrelated comparisons into one undifferentiated table.
3. Run strict statistics
Always produce:
- descriptive statistics:
mean ± std when appropriate,
95% CI or another clearly justified interval,
- run/seed counts,
- significance tests with assumptions stated,
- effect sizes,
- multiple-comparison handling when several contrasts are reported.
Default expectation:
- check parametric assumptions first,
- use non-parametric fallback when assumptions fail,
- state exactly what was tested and on what samples.
See:
references/statistical-methods.md
references/statistical-reporting.md
4. Generate real scientific figures
Produce actual figures whenever artifacts are available.
Minimum expectation for a non-trivial analysis bundle:
- one main comparison figure,
- one supporting figure (training dynamics / ablation / breakdown / error analysis),
- one exact numeric summary table in markdown.
Every main figure must define:
- figure purpose,
- plotted variables,
- error bar meaning,
- caption requirements,
- interpretation checklist.
See:
references/visualization-best-practices.md
references/figure-interpretation.md
5. Write analysis artifacts
analysis-report.md
Summarize:
- the analysis question,
- key findings,
- strongest supported comparisons,
- main caveats,
- what changed in the experimental understanding.
stats-appendix.md
Record:
- descriptive statistics,
- test choices,
- assumptions checked,
- effect sizes,
- confidence intervals,
- multiple comparison corrections,
- explicit blockers and limitations.
figure-catalog.md
For each figure, record:
- filename,
- purpose,
- data source,
- caption draft requirements,
- key observation,
- interpretation checklist,
- known caveats.
6. Final QA gate
Do not finish until all are true:
Output structure
analysis-output/
├── analysis-report.md
├── stats-appendix.md
├── figure-catalog.md
└── figures/
├── figure-01-main-comparison.pdf
├── figure-02-ablation.pdf
└── ...
Figure interpretation rule
For every major figure, answer all three questions:
- Why does this figure exist?
- What exactly should the reader notice?
- What does that observation change in our belief or next decision?
If a figure cannot answer question 3, it is probably decorative rather than scientific.
Failure mode policy
When inputs are incomplete, say so explicitly.
Examples:
- no seed-level data -> descriptive summary only; inferential claims blocked,
- no comparable baseline outputs -> no significance claim,
- no readable logs -> cannot generate dynamics figure,
- too few runs -> effect size may be unstable; report this limitation.
Never replace missing evidence with confident prose.
Reference files
Load only what is needed:
references/statistical-methods.md - test selection and assumptions
references/statistical-reporting.md - minimum reporting standard
references/visualization-best-practices.md - publication-quality figure rules
references/figure-interpretation.md - how to explain figures with evidence
references/analysis-depth.md - move from observation to mechanism and decision
references/common-pitfalls.md - common analysis and reporting failures
Example files
examples/example-analysis-report.md
examples/example-stats-appendix.md
examples/example-figure-catalog.md
1---2name: results-analysis3description: This skill should be used when the user asks to "analyze experimental results", "run strict statistical analysis", "compare model performance", "generate scientific figures", "check significance", "do ablation analysis", or mentions interpreting experiment data with rigorous statistics and visualization. It focuses on strict analysis bundles, not Results-section prose.4---56# Results Analysis78Run **strict, evidence-first experimental analysis** for ML/AI research.910Use this skill to produce a **strict analysis bundle**:11- `analysis-report.md`12- `stats-appendix.md`13- `figure-catalog.md`14- `figures/`1516Do **not** use this skill to draft a paper `Results` section or a full experiment wrap-up report. Those belong to `ml-paper-writing` or `results-report`.1718## Core contract1920### This skill is responsible for21- validating experiment artifacts and comparison units,22- running rigorous descriptive and inferential statistics,23- generating **real scientific figures** when data/logs are available,24- writing figure purposes, caption requirements, and interpretation checklists,25- surfacing limits, blockers, and missing evidence explicitly.2627### This skill is not responsible for28- paper-ready `Results` prose,29- manuscript narrative polishing,30- paper-ready figure/table packaging with `pubfig` / `pubtab`,31- project-level experiment retrospectives.3233If the user wants the complete post-experiment summary report, hand off to `results-report` after this bundle is ready. If the user wants publication-grade figures/tables, export parameters, publication QA, or figure/table redesign, hand off to `publication-chart-skill`.3435## Non-negotiable quality bar36371. **Prefer real figures over figure specs.**38 If the data can be read, generate real figures. Do not stop at “recommended visualization”.392. **Never fabricate statistics.**40 If sample size, seeds, or raw metrics are missing, state the blocker clearly.413. **Report complete statistics.**42 Do not report only best scores or only p-values.434. **Interpret every main figure.**44 Every major figure must have purpose, caption requirements, and post-figure interpretation notes.455. **Separate evidence from prose.**46 This skill produces analysis artifacts; it does not write manuscript sections.4748## Standard workflow4950### 1. Inventory and validate artifacts5152Start by identifying:53- metric tables (`csv`, `json`, `tsv`, logs),54- training curves and checkpoints,55- seeds / repeated runs,56- baselines, ablations, and comparison families,57- evaluation protocol metadata.5859Validate:60- metric direction (higher/lower is better),61- unit of analysis (run, subject, fold, dataset, seed),62- number of runs / seeds,63- missing values or silent failures,64- comparability across methods.6566If the comparison is not statistically valid, say so before continuing.6768### 2. Lock the comparison questions6970Before running statistics, define the exact comparison questions:71- Which method is compared to which baseline?72- What is the primary metric?73- What is the repeated-measure unit?74- Which ablation or robustness questions matter?75- Which findings are decision-changing?7677Do not mix unrelated comparisons into one undifferentiated table.7879### 3. Run strict statistics8081Always produce:82- descriptive statistics: `mean ± std` when appropriate,83- `95% CI` or another clearly justified interval,84- run/seed counts,85- significance tests with assumptions stated,86- effect sizes,87- multiple-comparison handling when several contrasts are reported.8889Default expectation:90- check parametric assumptions first,91- use non-parametric fallback when assumptions fail,92- state exactly what was tested and on what samples.9394See:95- `references/statistical-methods.md`96- `references/statistical-reporting.md`9798### 4. Generate real scientific figures99100Produce actual figures whenever artifacts are available.101102Minimum expectation for a non-trivial analysis bundle:103- **one main comparison figure**,104- **one supporting figure** (training dynamics / ablation / breakdown / error analysis),105- **one exact numeric summary table** in markdown.106107Every main figure must define:108- figure purpose,109- plotted variables,110- error bar meaning,111- caption requirements,112- interpretation checklist.113114See:115- `references/visualization-best-practices.md`116- `references/figure-interpretation.md`117118### 5. Write analysis artifacts119120#### `analysis-report.md`121Summarize:122- the analysis question,123- key findings,124- strongest supported comparisons,125- main caveats,126- what changed in the experimental understanding.127128#### `stats-appendix.md`129Record:130- descriptive statistics,131- test choices,132- assumptions checked,133- effect sizes,134- confidence intervals,135- multiple comparison corrections,136- explicit blockers and limitations.137138#### `figure-catalog.md`139For each figure, record:140- filename,141- purpose,142- data source,143- caption draft requirements,144- key observation,145- interpretation checklist,146- known caveats.147148### 6. Final QA gate149150Do not finish until all are true:151- [ ] the primary comparison question is explicit,152- [ ] sample size / seed count is stated,153- [ ] inferential tests are justified,154- [ ] effect sizes are reported for major contrasts,155- [ ] real figures exist when data exists,156- [ ] each figure has an interpretation note,157- [ ] limitations and blockers are explicit,158- [ ] no manuscript-style `Results` draft is included.159160## Output structure161162```text163analysis-output/164├── analysis-report.md165├── stats-appendix.md166├── figure-catalog.md167└── figures/168 ├── figure-01-main-comparison.pdf169 ├── figure-02-ablation.pdf170 └── ...171```172173## Figure interpretation rule174175For every major figure, answer all three questions:1761. **Why does this figure exist?**1772. **What exactly should the reader notice?**1783. **What does that observation change in our belief or next decision?**179180If a figure cannot answer question 3, it is probably decorative rather than scientific.181182## Failure mode policy183184When inputs are incomplete, say so explicitly.185186Examples:187- no seed-level data -> descriptive summary only; inferential claims blocked,188- no comparable baseline outputs -> no significance claim,189- no readable logs -> cannot generate dynamics figure,190- too few runs -> effect size may be unstable; report this limitation.191192Never replace missing evidence with confident prose.193194## Reference files195196Load only what is needed:197- `references/statistical-methods.md` - test selection and assumptions198- `references/statistical-reporting.md` - minimum reporting standard199- `references/visualization-best-practices.md` - publication-quality figure rules200- `references/figure-interpretation.md` - how to explain figures with evidence201- `references/analysis-depth.md` - move from observation to mechanism and decision202- `references/common-pitfalls.md` - common analysis and reporting failures203204## Example files205206- `examples/example-analysis-report.md`207- `examples/example-stats-appendix.md`208- `examples/example-figure-catalog.md`