bundles / scipy 1.17.1 / scipy / stats / _stats_py / ttest_1samp
function
scipy.stats._stats_py:ttest_1samp
source: /scipy/stats/_stats_py.py :6030
Signature
def ttest_1samp ( a , popmean , axis = 0 , nan_policy = propagate , alternative = two-sided , * , keepdims = False ) Summary
Calculate the T-test for the mean of ONE group of scores.
Extended Summary
This is a test for the null hypothesis that the expected value (mean) of a sample of independent observations a is equal to the given population mean, popmean.
Parameters
a: array_likeSample observations.
popmean: float or array_likeExpected value in null hypothesis. If array_like, then its length along
axismust equal 1, and it must otherwise be broadcastable witha.axis: int or None, default: 0If an int, the axis of the input along which to compute the statistic. The statistic of each axis-slice (e.g. row) of the input will appear in a corresponding element of the output. If
None, the input will be raveled before computing the statistic.nan_policy: {'propagate', 'omit', 'raise'}Defines how to handle input NaNs.
propagate: if a NaN is present in the axis slice (e.g. row) along which the statistic is computed, the corresponding entry of the output will be NaN.omit: NaNs will be omitted when performing the calculation. If insufficient data remains in the axis slice along which the statistic is computed, the corresponding entry of the output will be NaN.raise: if a NaN is present, aValueErrorwill be raised.
alternative: {'two-sided', 'less', 'greater'}, optionalDefines the alternative hypothesis. The following options are available (default is 'two-sided'):
'two-sided': the mean of the underlying distribution of the sample is different than the given population mean (
popmean)'less': the mean of the underlying distribution of the sample is less than the given population mean (
popmean)'greater': the mean of the underlying distribution of the sample is greater than the given population mean (
popmean)
keepdims: bool, default: FalseIf this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array.
Returns
result: `~scipy.stats._result_classes.TtestResult`An object with the following attributes:
statistic
statistic
pvalue
pvalue
df
df
The object also has the following method:
confidence_interval(confidence_level=0.95)
Computes a confidence interval around the population mean for the given confidence level. The confidence interval is returned in a
namedtuplewith fieldslowandhigh.
Notes
The statistic is calculated as (np.mean(a) - popmean)/se, where se is the standard error. Therefore, the statistic will be positive when the sample mean is greater than the population mean and negative when the sample mean is less than the population mean.
Beginning in SciPy 1.9, np.matrix inputs (not recommended for new code) are converted to np.ndarray before the calculation is performed. In this case, the output will be a scalar or np.ndarray of appropriate shape rather than a 2D np.matrix. Similarly, while masked elements of masked arrays are ignored, the output will be a scalar or np.ndarray rather than a masked array with mask=False.
Array API Standard Support
ttest_1samp has experimental support for Python Array API Standard compatible backends in addition to NumPy. Please consider testing these features by setting an environment variable SCIPY_ARRAY_API=1 and providing CuPy, PyTorch, JAX, or Dask arrays as array arguments. The following combinations of backend and device (or other capability) are supported.
==================== ==================== ==================== Library CPU GPU ==================== ==================== ==================== NumPy ✅ n/a CuPy n/a ✅ PyTorch ✅ ⛔ JAX ⚠️ no JIT ⚠️ no JIT Dask ⚠️ computes graph n/a ==================== ==================== ====================
See
dev-arrayapifor more information.
Examples
Suppose we wish to test the null hypothesis that the mean of a population is equal to 0.5. We choose a confidence level of 99%; that is, we will reject the null hypothesis in favor of the alternative if the p-value is less than 0.01. When testing random variates from the standard uniform distribution, which has a mean of 0.5, we expect the data to be consistent with the null hypothesis most of the time.import numpy as np from scipy import stats rng = np.random.default_rng() rvs = stats.uniform.rvs(size=50, random_state=rng)✓
stats.ttest_1samp(rvs, popmean=0.5)
✗rvs = stats.norm.rvs(size=50, random_state=rng)
✓stats.ttest_1samp(rvs, popmean=0.5)
✗stats.ttest_1samp(rvs, popmean=0.5, alternative='greater')
✗rvs = stats.uniform.rvs(size=(100, 50), random_state=rng) res = stats.ttest_1samp(rvs, popmean=0.5, axis=1)✓
np.sum(res.pvalue < 0.01)
✗rvs = stats.norm.rvs(size=50, random_state=rng) res = stats.ttest_1samp(rvs, popmean=0) ci = res.confidence_interval(confidence_level=0.95)✓
ci
✗res = stats.ttest_1samp(rvs, popmean=ci.low) np.testing.assert_allclose(res.pvalue, 0.05) res = stats.ttest_1samp(rvs, popmean=ci.high) np.testing.assert_allclose(res.pvalue, 0.05)✓
rvs = stats.norm.rvs(size=(50, 1000), loc=1, random_state=rng) res = stats.ttest_1samp(rvs, popmean=0) ci = res.confidence_interval() contains_pop_mean = (ci.low < 1) & (ci.high > 1)✓
contains_pop_mean.sum()
✗Aliases
-
scipy.stats.ttest_1samp