本文简要介绍 python 语言中scipy.stats._result_classes.BinomTestResult.proportion_ci
的用法。
用法:
BinomTestResult.proportion_ci(confidence_level=0.95, method='exact')#
计算
statistic
的置信区间。- confidence_level: 浮点数,可选
估计比例的计算置信区间的置信水平。默认值为 0.95。
- method: {‘exact’, ‘wilson’, ‘wilsoncc’},可选
选择用于计算比例估计置信区间的方法:
- ‘exact’:
使用 Clopper-Pearson 精确方法 [1]。
- ‘wilson’:
Wilson 方法,没有连续性校正 ([2], [3])。
- ‘wilsoncc’:
Wilson 方法,具有连续性校正 ([2], [3])。
默认为
'exact'
。
- ci:
ConfidenceInterval
对象 该对象具有属性
low
和high
,它们包含置信区间的下限和上限。
- ci:
参数 ::
返回 ::
参考:
[1]C. J. Clopper 和 E. S. Pearson,在二项式的情况下使用置信度或基准限制,Biometrika,卷。 26,第 4 期,第 404-413 页(1934 年 12 月)。
[2] (1,2)E. B. Wilson,概率推断、继承法则和统计推断,J. Amer。统计。协会,22,第 209-212 页(1927 年)。
[3] (1,2)Robert G. Newcombe,单一比例的两侧置信区间:七种方法的比较,医学统计,17,第 857-872 页(1998 年)。
例子:
>>> from scipy.stats import binomtest >>> result = binomtest(k=7, n=50, p=0.1) >>> result.statistic 0.14 >>> result.proportion_ci() ConfidenceInterval(low=0.05819170033997342, high=0.26739600249700846)
相关用法
- Python SciPy BivariateSpline.ev用法及代码示例
- Python SciPy BivariateSpline.__call__用法及代码示例
- Python SciPy BPoly.from_derivatives用法及代码示例
- Python SciPy BSpline.basis_element用法及代码示例
- Python SciPy BSpline.integrate用法及代码示例
- Python SciPy BSpline.design_matrix用法及代码示例
- Python SciPy Bounds.residual用法及代码示例
- Python SciPy BarycentricInterpolator.derivatives用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy stats.anderson用法及代码示例
- Python SciPy ClusterNode.pre_order用法及代码示例
- Python SciPy stats.iqr用法及代码示例
- Python SciPy FortranFile.read_record用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy signal.czt_points用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy distance.sokalmichener用法及代码示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代码示例
- Python SciPy linalg.cdf2rdf用法及代码示例
- Python SciPy csc_array.diagonal用法及代码示例
- Python SciPy fft.idctn用法及代码示例
- Python SciPy linalg.LaplacianNd用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.stats._result_classes.BinomTestResult.proportion_ci。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。