$npx skillfedfor your agent

statistical-testing

Statistical Testing provides researchers with advanced methods for hypothesis testing, Bayesian inference, survival analysis, time series modeling, and meta-analysis. The skill covers multiple comparison corrections, effect size calculations, and bootstrap/permutation approaches with APA-compliant reporting standards.

Statistical Testing performs advanced hypothesis testing, Bayesian analysis, survival analysis, time series forecasting, and meta-analysis.

AI-generated summary based on this skill's SKILL.md

869 101 MITupdated by beita6969

Decision gist · record as of 2026-06-08

Statistical Testing performs advanced hypothesis testing, Bayesian analysis, survival analysis, time series forecasting, and meta-analysis. Statistical Testing provides researchers with advanced methods for hypothesis testing, Bayesian inference, survival analysis, time series modeling, and meta-analysis. The skill covers multiple comparison corrections, effect size calculations, and bootstrap/permutation approaches with APA-compliant reporting standards.

manual: git clone https://github.com/beita6969/ScienceClaw → cp -r ScienceClaw/skills/statistical-testing ~/.claude/skills/statistical-testing
skills/statistical-testing/SKILL.md · version 7b594054

Use it when

  • Statistical Testing provides Bayesian inference with prior specification, posterior estimation, and credible interval computation.
  • Yes, Statistical Testing includes comprehensive survival analysis tools for time-to-event data.

Verify before relying

Read SKILL.md below before installing (1 file). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

beita6969/ScienceClaw/statistical-testing · repository language: TypeScript

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How to do hypothesis testing in Python with statistical-testing?

Statistical Testing enables advanced hypothesis testing through multiple frameworks. You can perform parametric tests (t-tests, ANOVA), non-parametric alternatives (Mann-Whitney U, Kruskal-Wallis), and apply multiple comparison corrections like FDR to control Type I error across tests. The skill supports APA-compliant reporting of p-values, confidence intervals, and effect sizes.

What Bayesian analysis capabilities does statistical-testing offer?

Statistical Testing provides Bayesian inference with prior specification, posterior estimation, and credible interval computation. You can conduct Bayesian hypothesis testing using Bayes factors for model comparison, update beliefs with observed data, and interpret posterior distributions for parameter estimation with full uncertainty quantification.

Can statistical-testing handle survival analysis with censored data?

Yes, Statistical Testing includes comprehensive survival analysis tools for time-to-event data. Features include Kaplan-Meier curves, log-rank tests for group comparisons, Cox regression for hazard modeling, and proper handling of censored observations. These methods are essential for clinical trials and reliability studies.

How does statistical-testing support time series forecasting?

Statistical Testing covers time series analysis including stationarity testing, seasonal decomposition, and ARIMA modeling for forecasting. You can identify trend and seasonal components, fit autoregressive models, and generate predictions with confidence intervals for future periods.

What meta-analysis and effect size features are included?

Statistical Testing enables meta-analysis by combining effect sizes across multiple studies with proper weighting. Calculate Cohen's d, odds ratios, and other standardized effect measures. The skill supports forest plots, heterogeneity assessment, and fixed/random effects models for synthesizing research evidence.

Does statistical-testing support bootstrap and permutation methods?

Statistical Testing includes resampling approaches like bootstrap confidence intervals and permutation tests for distribution-free inference. These methods provide robust alternatives when parametric assumptions fail, enabling valid statistical conclusions without relying on normality or other strict distributional requirements.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

Statistical Testing

Advanced statistical methods for scientific research. Venv: source /Users/zhangmingda/clawd/.venv/bin/activate

Bayesian Analysis

```python

Simple Bayesian estimation (conjugate priors)

import numpy as np from scipy import stats

Beta-Binomial (proportions)

Prior: Beta(alpha_prior, beta_prior), Data: k successes in n trials

alpha_prior, beta_prior = 1, 1 # uniform prior k, n = 45, 100 alpha_post = alpha_prior + k beta_post = beta_prior + (n - k) posterior = stats.beta(alpha_post, beta_post) print(f"Posterior mean: {posterior.mean():.3f}") print(f"95% credible interval: {posterior.ppf([0.025, 0.975])}")

Bayes Factor (BF10)

(truncated - see the full file via the links below)

File tree — 1 file
skills/statistical-testing/SKILL.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Perform advanced hypothesis testing and statistical inference”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

Statistical Hypothesis Testing
by aj-geddes · aj-geddes/useful-ai-prompts

Perform rigorous statistical tests including t-tests, ANOVA, chi-square, and non-parametric alternatives to assess whether observed differences are statistically significant. The skill handles independent and paired comparisons, multiple group analysis, categorical independence testing, and includes effect size calculations, confidence intervals, and power analysis to support evidence-based decision-making.

MITupdated Mar 2026
★ 299repo stars
meta-analysis
by beita6969 · beita6969/ScienceClaw

meta-analysis synthesizes findings across studies by computing pooled effect sizes, testing for heterogeneity, and detecting publication bias through forest and funnel plots. It supports multiple effect size types including odds ratios, risk ratios, standardized mean differences, and hazard ratios, with random-effects modeling and bias diagnostics built in.

MITupdated Jun 2026
★ 869repo stars
lifelines
by tondevrel · tondevrel/scientific-agent-skills

Lifelines is a Python survival analysis library built for medical research and epidemiology. It models time-to-event outcomes like disease progression or recovery, properly accounting for censored data from patients who leave studies early. Use it to estimate survival curves, compare treatment groups, and identify risk factors through Cox proportional hazards regression.

MITupdated Feb 2026
★ 19repo stars
data-stats-analysis
by beita6969 · beita6969/ScienceClaw

This skill brings rigorous statistical testing to your LLM workflow using standard Python libraries (scipy, statsmodels, numpy) that execute locally in your environment. Perform t-tests, ANOVA, correlation analysis, multiple testing corrections, and non-parametric tests—all compatible with any LLM provider including GPT, Claude, Gemini, and others.

MITupdated Jun 2026
★ 869repo stars
Survival Analysis
by aj-geddes · aj-geddes/useful-ai-prompts

This skill teaches statistical methods for analyzing when events occur, accounting for incomplete observations where some subjects haven't experienced the event yet. You'll learn Kaplan-Meier estimation for survival curves, Cox regression for modeling risk factors, and log-rank tests for comparing groups—with practical Python implementations using lifelines.

MITupdated Mar 2026
★ 299repo stars
statsmodels-stats
by beita6969 · beita6969/ScienceClaw

statsmodels-stats provides regression modeling, hypothesis testing, and time series analysis for statistical workflows. Build OLS, logistic, and generalized linear models; run t-tests, ANOVA, and proportion tests; fit ARIMA and VAR models; and perform survival analysis with diagnostic plots and rigorous statistical reporting.

MITupdated Jun 2026
★ 869repo stars

More skills tooluniverse-meta-analysis (Apache-2.0) · statistical-analysis (MIT) · data-analysis (MIT) · clash-detection-analysis (MIT) · statistics-verifier (MIT) · Statistical Analysis (unlicensed) · statistics (MIT) · Statistical Analysis (NOASSERTION)

Tags
inferential-statisticsresearch-methodologyprobabilistic-modelingadvanced-analyticsclinical-trialslongitudinal-datap-value-correctioneffect-quantificationcausal-inference