How to do a one-sided hypothesis test for two sample means (in Python, using SciPy)
Task
If we have two samples,
Related tasks:
- How to compute a confidence interval for a population mean
- How to do a two-sided hypothesis test for a sample mean
- How to do a two-sided hypothesis test for two sample means
- How to do a one-way analysis of variance (ANOVA)
- How to do a hypothesis test for a mean difference (matched pairs)
- How to do a hypothesis test for a population proportion
Solution
If we call the mean of the first sample
1
2
3
4
5
6
7
8
9
from scipy import stats
# Replace these first three lines with the values from your situation.
sample1 = [ 6, 9, 7, 10, 10, 9 ]
sample2 = [ 12, 14, 10, 17, 9 ]
# Run a one-sample t-test and print out alpha, the p value,
# and whether the comparison says to reject the null hypothesis.
stats.ttest_ind( sample1, sample2, equal_var=False, alternative="less" )
Ttest_indResult(statistic=-2.4616581720814326, pvalue=0.02548641870923849)
The output says that the
The equal_var
parameter tells SciPy not to assume that the two samples
have equal variances. If in your case they do, you can omit that parameter,
and it will revert to its default value of True
.
Content last modified on 24 July 2023.
See a problem? Tell us or edit the source.
Contributed by Nathan Carter (ncarter@bentley.edu)