t test paired (dependent samples) - mauriceling/mauriceling.github.io GitHub Wiki

Purpose: To test whether 2 samples were drawn from the same population.

Null hypothesis: Mean of difference between Population A and Population B = 0

Alternate hypothesis: Mean of difference between Population A and Population B ≠ 0

Code:

>>> from scipy import stats
>>> X1 = [9.07, 8.97, 6.41, 3.03, 1.19, 2.67, 2.81, 9.2]
>>> X2 = [3.82, 8.26, 5.99, 3.81, 1.07, 5.06, 5.66, 4.47]
>>> result = stats.ttest_rel(X1, X2)
>>> print("t = %.3f" % result.statistic)
t = 0.621
>>> print("p-value = %.3f" % result.pvalue)
p-value = 0.555