RM Notes
Comprehensive guide to understanding, interpreting, and correctly reporting p-values in research
export const frontmatter = { title: "P-Value in Statistics", description: "Comprehensive guide to understanding, interpreting, and correctly reporting p-values in research", keywords: ["p-value", "statistical significance", "hypothesis testing", "research methodology", "statistics"] };
The p-value is the most reported, most misunderstood, and most controversial statistic in research. It is a number between 0 and 1 that helps researchers decide whether their findings represent a genuine effect or could have occurred by random chance alone. Understanding what p-values actually mean—and what they do not mean—is essential for producing and consuming credible research.
What Is a P-Value? (The Correct Definition)
Technical definition: The p-value is the probability of obtaining results at least as extreme as those observed, assuming the null hypothesis is true.
Let us unpack this carefully:
- "Assuming the null hypothesis is true" — We start by assuming there is NO real effect
- "Results at least as extreme" — We calculate how unlikely our observed data would be under that assumption
- If this probability is very small (p < 0.05), we conclude that the null hypothesis is probably wrong—our data is too surprising to be explained by chance alone
Analogy: Imagine a coin. You suspect it is biased (your alternative hypothesis). You flip it 10 times and get 9 heads. The p-value answers: "If the coin were fair (null hypothesis), what is the probability of getting 9 or more heads in 10 flips?" That probability is about 0.01 (1%). Since this is very unlikely under the fair-coin assumption, you reject the null and conclude the coin is probably biased.
What P-Values Do NOT Mean
Misconception 1: "P = 0.03 means there is a 3% chance my results are wrong"
Wrong. The p-value is not the probability that your results are due to chance. It is the probability of your data given the null hypothesis—a subtle but crucial distinction.
Misconception 2: "P = 0.03 means there is a 97% chance the effect is real"
Wrong. The p-value says nothing about the probability that your hypothesis is true. For that, you would need Bayesian statistics.
Misconception 3: "P < 0.05 means the effect is important/large"
Wrong. With a large enough sample, even trivially small effects produce significant p-values. A study of 10,000 people might find that coffee drinkers score 0.3 points higher on a 100-point test (p = 0.01)—statistically significant but practically meaningless.
Misconception 4: "P = 0.06 means no effect exists"
Wrong. Failure to reject the null hypothesis is not evidence that the null is true. P = 0.06 might simply reflect insufficient sample size to detect a real effect.
The Significance Threshold (α = 0.05)
The convention of using α = 0.05 as the significance threshold was popularized by Ronald Fisher in the 1920s. It means: "If the probability of seeing these results under the null hypothesis is less than 5%, we consider them statistically significant."
Why 0.05?
There is nothing magical about 0.05. Fisher himself described it as a convenient benchmark, not a rigid rule. Different contexts justify different thresholds:
- Exploratory research: α = 0.10 may be acceptable (casting a wider net)
- Standard research: α = 0.05 (conventional)
- High-stakes decisions: α = 0.01 or 0.001 (reducing false positive risk)
- Genomics/multiple testing: α = 0.00000005 (Bonferroni-adjusted for millions of tests)
How P-Values Are Calculated
Example: One-Sample t-Test
Scenario: You claim the average completion time for a task is faster than the established 45-minute average. You test 30 participants: mean = 41.2 minutes, SD = 8.5.
- State hypotheses: H₀: μ = 45; H₁: μ < 45
- Calculate test statistic: t = (41.2 - 45) / (8.5/√30) = -3.8 / 1.552 = -2.45
- Find p-value: With 29 df, p = 0.010 (one-tailed)
- Decision: p = 0.010 < 0.05, reject H₀
Interpretation: If the true mean were 45 minutes, there is only a 1% chance of observing a sample mean of 41.2 or lower with 30 participants. This is sufficiently unlikely, so we conclude the true mean is probably less than 45 minutes.
Example: Chi-Square Test
Scenario: Testing whether gender is associated with preference for online vs. offline shopping. Survey of 200 people:
| Online | Offline | Total | |
|---|---|---|---|
| Male | 65 | 35 | 100 |
| Female | 48 | 52 | 100 |
| Total | 113 | 87 | 200 |
- Expected values calculated
- χ² = 5.89, df = 1
- p = 0.015
Interpretation: If gender and shopping preference were truly independent (null hypothesis), there is only a 1.5% chance of observing differences this large. We conclude that gender is significantly associated with shopping preference.
Practical Significance vs. Statistical Significance
This distinction is crucial and frequently ignored:
| Scenario | Statistically Significant? | Practically Significant? |
|---|---|---|
| New drug reduces blood pressure by 0.5 mmHg (n=50,000, p=0.001) | Yes | No (clinically irrelevant) |
| New teaching method improves scores by 15 points (n=30, p=0.08) | No | Possibly yes (large effect, underpowered study) |
| Training program increases productivity by 12% (n=200, p=0.003) | Yes | Yes (meaningful business impact) |
Rule: Always report effect sizes alongside p-values. The p-value tells you whether something is happening; the effect size tells you whether it matters.
The P-Value Controversy
In 2016, the American Statistical Association published an unprecedented statement on p-values, noting their widespread misuse. Key points:
- P-values do not measure the probability that the hypothesis is true
- Scientific conclusions should not be based solely on whether p < 0.05
- P-values do not measure effect size or practical importance
- A p-value of 0.05 is not a natural boundary between "real" and "not real"
Some journals (notably Basic and Applied Social Psychology) have banned p-values entirely. Others now require reporting confidence intervals and effect sizes alongside p-values.
Reporting P-Values Correctly
APA Format Guidelines
- Report exact p-values: "p = .032" (not "p < .05")
- Use two or three decimal places: "p = .008" or "p < .001"
- For very small values: "p < .001" (not "p = .000")
- Do not write "p = n.s." (not significant)—report the actual value: "p = .234"
- Always accompany with test statistic and degrees of freedom: "t(48) = 2.34, p = .023"
Examples of Correct Reporting
- "The correlation was significant, r(98) = .42, p < .001."
- "Groups did not differ significantly, F(2, 87) = 1.24, p = .295, η² = .028."
- "The odds ratio was significant, OR = 2.4, 95% CI [1.3, 4.4], p = .005."
Common P-Value Pitfalls
1. P-Hacking
Running many analyses and reporting only significant results. If you test 20 hypotheses at α = 0.05, you expect 1 false positive even with no real effects. Solutions: pre-register analyses, correct for multiple comparisons.
2. HARKing (Hypothesizing After Results are Known)
Conducting exploratory analysis, finding a significant result, and then writing the paper as if you predicted it all along. This inflates false positive rates.
3. Stopping Rules
Collecting data until you find significance (peeking at results and stopping when p < 0.05). This dramatically inflates false positive rates. Solution: determine sample size in advance based on power analysis.
4. Ignoring Non-Significant Results (Publication Bias)
Journals preferentially publish significant results, creating a distorted literature. The "file drawer problem" means many null results go unreported.
Alternatives and Complements to P-Values
| Approach | What It Tells You |
|---|---|
| Confidence intervals | Range of plausible effect sizes |
| Effect sizes (Cohen's d, η², R²) | Magnitude of the effect |
| Bayesian analysis | Probability of hypothesis given data |
| Power analysis | Whether your study could detect a real effect |
| Equivalence testing | Whether an effect is practically zero |
Conclusion
The p-value is a useful tool when properly understood—it helps distinguish signal from noise. But it is only one piece of evidence, not the final arbiter of truth. Combine p-values with effect sizes, confidence intervals, and thoughtful interpretation. Never let a single number—especially an arbitrary threshold of 0.05—replace scientific judgment about what your results actually mean for the real world.
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for P-Value in Statistics.
Interview Use
Prepare one clear explanation, one practical example, and one common mistake for this Research Methodology topic.
Search Terms
research-methodology, research methodology, research, methodology, statistical, tools, value, p-value in statistics
Related Research Methodology Topics