Hypothesis Testing Guide logo

Hypothesis Testing Guide

Community
wentorai
hypothesis-testing-guide

Statistical hypothesis testing, power analysis, and significance reporting

Overview

Publisherwentorai
Repositoryresearch-plugins
Skill namehypothesis-testing-guide
Stars
294
Forks
42
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by wentorai on GitHub. Read the source before you install it.

Installation

Install the Hypothesis Testing Guide AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/wentorai/research-plugins.git /tmp/research-plugins
mkdir -p .claude/skills
cp -r /tmp/research-plugins/skills/analysis/statistics/hypothesis-testing-guide .claude/skills/hypothesis-testing-guide
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Hypothesis Testing Guide in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Hypothesis Testing Guide on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Hypothesis Testing Guide is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Hypothesis Testing Guide

Overview

Hypothesis testing is the backbone of empirical research. It provides a principled framework for deciding whether observed differences in data reflect genuine effects or merely random variation. Misuse of hypothesis tests -- p-hacking, ignoring assumptions, confusing statistical and practical significance -- is a leading cause of irreproducible findings.

This guide covers the core hypothesis testing framework, the most commonly used tests across disciplines, assumption checking, effect size reporting, power analysis for sample size planning, and multiple comparison corrections. Each test is accompanied by Python code using scipy, statsmodels, and pingouin, ready to integrate into research workflows.

The goal is not just to help you run tests, but to help you run the right test correctly and report results following modern standards (APA 7th edition, journal best practices).

The Hypothesis Testing Framework

Step-by-Step Procedure

  1. State hypotheses. Define H0 (null: no effect) and H1 (alternative: effect exists).
  2. Choose significance level. Typically alpha = 0.05, but justify your choice.
  3. Select the appropriate test. Based on data type, distribution, and design.
  4. Check assumptions. Normality, homogeneity of variance, independence.
  5. Compute test statistic and p-value.
  6. Report effect size and confidence interval. p-values alone are insufficient.
  7. Make a decision. Reject or fail to reject H0, with practical interpretation.

Common Errors

Error TypeDefinitionProbability
Type I (False Positive)Reject H0 when it is truealpha (usually 0.05)
Type II (False Negative)Fail to reject H0 when it is falsebeta (usually 0.20)
PowerProbability of correctly detecting an effect1 - beta (target: 0.80)

Test Selection Guide

Research QuestionData TypeGroupsTest
Two group means differ?Continuous, normal2 independentIndependent t-test
Before/after difference?Continuous, normal2 pairedPaired t-test
Multiple group means differ?Continuous, normal3+ independentOne-way ANOVA
Two group medians differ?Ordinal / non-normal2 independentMann-Whitney U
Before/after (non-normal)?Ordinal / non-normal2 pairedWilcoxon signed-rank
Multiple groups (non-normal)?Ordinal / non-normal3+ independentKruskal-Wallis
Association between categories?Categorical2 variablesChi-square test
Correlation?Continuous2 variablesPearson or Spearman

Running Tests in Python

Independent Samples t-Test

python
from scipy import stats
import numpy as np
import pingouin as pg

# Generate example data
control = np.random.normal(50, 10, n=30)
treatment = np.random.normal(55, 10, n=30)

# Check normality assumption
stat_c, p_c = stats.shapiro(control)
stat_t, p_t = stats.shapiro(treatment)
print(f"Normality p-values: control={p_c:.3f}, treatment={p_t:.3f}")

# Check homogeneity of variance
stat_l, p_l = stats.levene(control, treatment)
print(f"Levene's test p={p_l:.3f}")

# Run t-test
t_stat, p_val = stats.ttest_ind(control, treatment, equal_var=(p_l > 0.05))

# Effect size (Cohen's d)
cohens_d = (treatment.mean() - control.mean()) / np.sqrt(
    ((len(control)-1)*control.var() + (len(treatment)-1)*treatment.var())
    / (len(control) + len(treatment) - 2)
)

print(f"t={t_stat:.3f}, p={p_val:.4f}, Cohen's d={cohens_d:.3f}")

One-Way ANOVA with Post-Hoc Tests

python
import pandas as pd

df = pd.DataFrame({
    'score': np.concatenate([
        np.random.normal(50, 10, 30),
        np.random.normal(55, 10, 30),
        np.random.normal(60, 10, 30)
    ]),
    'group': np.repeat(['A', 'B', 'C'], 30)
})

# ANOVA
aov = pg.anova(data=df, dv='score', between='group', detailed=True)
print(aov)

# Post-hoc pairwise comparisons (Tukey HSD)
posthoc = pg.pairwise_tukey(data=df, dv='score', between='group')
print(posthoc[['A', 'B', 'diff', 'p-tukey', 'hedges']])

Chi-Square Test of Independence

python
# Contingency table
observed = pd.DataFrame(
    [[45, 30], [25, 50]],
    index=['Method A', 'Method B'],
    columns=['Success', 'Failure']
)

chi2, p, dof, expected = stats.chi2_contingency(observed)
cramers_v = np.sqrt(chi2 / (observed.values.sum() * (min(observed.shape) - 1)))

print(f"chi2={chi2:.3f}, p={p:.4f}, Cramer's V={cramers_v:.3f}")

Power Analysis and Sample Size

Power analysis answers: "How many participants do I need?"

python
from statsmodels.stats.power import TTestIndPower, FTestAnovaPower

# For a two-sample t-test
analysis = TTestIndPower()

# Calculate required sample size
n = analysis.solve_power(
    effect_size=0.5,   # Cohen's d (medium effect)
    alpha=0.05,
    power=0.80,
    ratio=1.0,         # Equal group sizes
    alternative='two-sided'
)
print(f"Required n per group: {int(np.ceil(n))}")

# Power curve
import matplotlib.pyplot as plt

sample_sizes = np.arange(10, 200, 5)
powers = [analysis.power(effect_size=0.5, nobs1=n, ratio=1.0, alpha=0.05)
          for n in sample_sizes]

fig, ax = plt.subplots()
ax.plot(sample_sizes, powers)
ax.axhline(0.8, color='red', linestyle='--', label='Power = 0.80')
ax.set_xlabel('Sample Size per Group')
ax.set_ylabel('Statistical Power')
ax.legend()
fig.savefig('power_curve.pdf')

Effect Size Reference Table

Effect SizeSmallMediumLarge
Cohen's d (t-test)0.20.50.8
eta-squared (ANOVA)0.010.060.14
Cramer's V (chi-square)0.10.30.5
Pearson r (correlation)0.10.30.5

Multiple Comparison Corrections

When running multiple tests, the family-wise error rate inflates. Use corrections:

python
from statsmodels.stats.multitest import multipletests

p_values = [0.01, 0.04, 0.03, 0.08, 0.002]

# Bonferroni (conservative)
reject_bonf, pvals_bonf, _, _ = multipletests(p_values, method='bonferroni')

# Benjamini-Hochberg FDR (less conservative)
reject_bh, pvals_bh, _, _ = multipletests(p_values, method='fdr_bh')

for i, p in enumerate(p_values):
    print(f"p={p:.3f} | Bonferroni: {pvals_bonf[i]:.3f} ({reject_bonf[i]}) "
          f"| BH-FDR: {pvals_bh[i]:.3f} ({reject_bh[i]})")

Best Practices

  • Always report effect sizes alongside p-values. A significant p-value with a tiny effect size is rarely meaningful.
  • Pre-register your analysis plan. This prevents p-hacking and HARKing (Hypothesizing After Results are Known).
  • Check assumptions before running parametric tests. Use non-parametric alternatives when assumptions are violated.
  • Use confidence intervals. They convey both effect magnitude and precision.
  • Report exact p-values (p = 0.032), not thresholds (p < 0.05). Except when p < 0.001.
  • Consider Bayesian alternatives. Bayes factors provide evidence for H0, not just against it.
  • Plan sample sizes a priori. Power analysis should be done before data collection, not after.

References

Frequently asked questions

What does the Hypothesis Testing Guide AI skill do?

Statistical hypothesis testing, power analysis, and significance reporting

Why use Hypothesis Testing Guide on TypingMind?

Because you install it once and use it with any model. Hypothesis Testing Guide is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Hypothesis Testing Guide in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/wentorai/research-plugins/tree/main/skills/analysis/statistics/hypothesis-testing-guide. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Hypothesis Testing Guide?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Hypothesis Testing Guide?

As many as you like. As long as a model supports skills, you can use Hypothesis Testing Guide with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Hypothesis Testing Guide AI skill free?

Yes. It is published on GitHub by wentorai under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇