scipy.stats.mstats.ttest_rel¶
- 
scipy.stats.mstats.ttest_rel(a, b, axis=0)[source]¶
- Calculates the T-test on TWO RELATED samples of scores, a and b. - Parameters
- a, barray_like
- The arrays must have the same shape. 
- axisint or None, optional
- Axis along which to compute test. If None, compute over the whole arrays, a, and b. 
 
- Returns
- statisticfloat or array
- t-statistic 
- pvaluefloat or array
- two-tailed p-value 
 
 - Notes - For more details on - ttest_rel, see stats.ttest_rel.
