scipy.stats.mstats.ttest_onesamp¶
- 
scipy.stats.mstats.ttest_onesamp(a, popmean, axis=0)[source]¶
- Calculates the T-test for the mean of ONE group of scores. - Parameters
- aarray_like
- sample observation 
- popmeanfloat or array_like
- expected value in null hypothesis, if array_like than it must have the same shape as a excluding the axis dimension 
- axisint or None, optional
- Axis along which to compute test. If None, compute over the whole array a. 
 
- Returns
- statisticfloat or array
- t-statistic 
- pvaluefloat or array
- two-tailed p-value 
 
 - Notes - For more details on - ttest_1samp, see stats.ttest_1samp.
