Agent skill · Testing & QA

statistical-analysis-advisor

Recommend appropriate statistical tests (T-test, ANOVA, Mann-Whitney, etc.) based on data type, distribution, sample size, and research design.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill statistical-analysis-advisor-aipoch-medical-research-ski --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/statistical-analysis-advisor-aipoch-medical-research-ski/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Statistical Analysis Advisor Intelligent statistical test recommendation engine that guides users through selecting the right statistical methods for their data and research design. ## Quick Check ```bash python -m py_compile scripts/main.py python scripts/main.py ``` ## When to Use - Choosing between parametric and non-parametric tests - Selecting the right test for 2-group vs multi-group comparisons - Checking statistical assumptions before analysis - Power analysis and sample size planning ## Usage ```python from scripts.main import StatisticalAdvisor advisor = StatisticalAdvisor() recommendation = advisor.recommend_test( data_type="continuous", groups=2, independent=True, distribution="normal" ) ``` ## Input Parameters | Parameter | Type | Description | |-----------|------|-------------| | `data_type` | str | "continuous", "categorical", "ordinal" | | `groups` | int | Number of groups/comparison levels | | `independent` | bool | Independent or paired/related samples | | `distribution` | str | "normal", "non-normal", "unknown" | | `sample_size` | int | Current or planned sample size | ## Capabilities 1. **Test Selection** — T-test, ANOVA, Chi-square, Mann-Whitney, Kruskal-Wall

What's inside
Steps it walks through
  1. Quick Check
  2. When to Use
  3. Usage
  4. Input Parameters
  5. Capabilities
  6. Workflow
  7. Fallback Template
  8. Limitations
  9. Output Requirements
  10. Error Handling
  11. Input Validation
  12. Response Template
  13. References
  14. Prerequisites
Ships with 1 file
  • metadata.json
Commands it runs
python -m py_compile scripts/main.py
python scripts/main.py
pip install -r requirements.txt
More from claude-skill-registry
All skills →
About this skill
What does the statistical-analysis-advisor skill do?

Recommend appropriate statistical tests (T-test, ANOVA, Mann-Whitney, etc.) based on data type, distribution, sample size, and research design.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill statistical-analysis-advisor-aipoch-medical-research-ski --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going