statistical-analysis

Analyze experimental results with statistical tests and confidence intervals.

Updated Apr 27, 2026
One-click install
npx skills add https://github.com/Tnemo65/template --skill statistical-analysis-tnemo65
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: statistical-analysis
Source: https://github.com/Tnemo65/template/tree/main/.cursor/skills/00-general-skills/statistical-analysis
Command: npx skills add https://github.com/Tnemo65/template --skill statistical-analysis-tnemo65

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Analyze experimental results with rigorous statistical tests to determine significance and quantify uncertainty across experiments.

Core Features & Use Cases

  • Statistical testing: supports paired t-tests, non-parametric tests, and multiple comparisons corrections.
  • Effect sizes & CI s: computes Cohen's d, bootstrap confidence intervals, and interpretable metrics.
  • Power analysis: performs sample size planning and study design considerations for future experiments.
  • Use cases include comparing methods, running ablations, and synthesizing results for publication.

Quick Start

Analyze your experimental results using a paired t-test and report p-values, confidence intervals, and effect sizes.

Frequently Asked Questions about statistical-analysis

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I calculate effect sizes and confidence intervals for experimental data?

To calculate effect sizes and confidence intervals for experimental data, this skill computes Cohen's d and applies bootstrap confidence intervals. It uses standard scientific tooling like numpy and scipy to quantify uncertainty and provide interpretable metrics for your results.

How do I run statistical hypothesis tests like paired t-tests for method comparisons?

To run statistical hypothesis tests for method comparisons, this skill applies paired t-tests and non-parametric tests. It determines statistical significance and applies multiple comparisons corrections to ensure rigorous analysis across experimental ablations.

Can I perform a power analysis for sample size planning in Python?

Yes, you can perform a power analysis for sample size planning in Python. This skill handles study design considerations to calculate required sample sizes for future experiments, relying on standard scientific computing libraries like scipy to execute the analysis.

What's the best way to generate publication-ready statistical summaries from experiment results?

The best way to generate publication-ready statistical summaries from experiment results is to synthesize p-values, confidence intervals, and effect sizes together. This skill processes experimental outputs to produce rigorous reports suitable for publication.

Do I need specific Python libraries to compute bootstrap confidence intervals and t-tests?

You need standard scientific Python tooling such as numpy and scipy to compute bootstrap confidence intervals and t-tests. These libraries provide the computational foundation required to execute the statistical analyses and power calculations.

When should I use non-parametric tests instead of paired t-tests for ablation analysis?

You should use non-parametric tests instead of paired t-tests for ablation analysis when your experimental data does not meet normality assumptions. This skill supports both testing approaches, allowing you to choose the appropriate method to determine significance.