Claude Code Skills · 论文 · 数据分析
analyze-results
这个 skill 针对机器学习实验的自动化分析。它从指定目录找出 JSON 或 CSV 结果,按自变量与因变量组织比较表,计算多次重复的均值与标准差,识别单调或 U 形趋势,标记异常值,最后给出每条发现的数值观察、可能原因与后续实验建议。适用于论文写作中需要快速从原始输出提炼核心结论并更新实验记录的场景。
Analyze ML experiment results, compute statistics, generate comparison tables and insights. Use when user says "analyze results", "compare", or needs to interpret experimental data.
- Repo
Chanw-research/claude-code-paper-writing- Slug
analyze-results
SKILL.md
Analyze Experiment Results
Analyze: $ARGUMENTS
Workflow
Step 1: Locate Results
Find all relevant JSON/CSV result files:
- Check
figures/,results/, or project-specific output directories - Parse JSON results into structured data
Step 2: Build Comparison Table
Organize results by:
- Independent variables: model type, hyperparameters, data config
- Dependent variables: primary metric (e.g., perplexity, accuracy, loss), secondary metrics
- Delta vs baseline: always compute relative improvement
Step 3: Statistical Analysis
- If multiple seeds: report mean +/- std, check reproducibility
- If sweeping a parameter: identify trends (monotonic, U-shaped, plateau)
- Flag outliers or suspicious results
Step 4: Generate Insights
For each finding, structure as:
- Observation: what the data shows (with numbers)
- Interpretation: why this might be happening
- Implication: what this means for the research question
- Next step: what experiment would test the interpretation
Step 5: Update Documentation
If findings are significant:
- Propose updates to project notes or experiment reports
- Draft a concise finding statement (1-2 sentences)
Output Format
Always include:
- Raw data table
- Key findings (numbered, concise)
- Suggested next experiments (if any)
同一分类的其他项