本文简要介绍 python 语言中scipy.stats._result_classes.RelativeRiskResult.confidence_interval
的用法。
用法:
RelativeRiskResult.confidence_interval(confidence_level=0.95)#
计算相对风险的置信区间。
置信区间使用 Katz 方法计算(即 [1] 的 “Method C”;另请参见 [2],第 3.1.2 节)。
- confidence_level: 浮点数,可选
用于置信区间的置信水平。默认值为 0.95。
- ci: ConfidenceInterval 实例
返回值是一个具有属性
low
和high
的对象,用于保存置信区间。
参数 ::
返回 ::
参考:
[1]D. Katz、J. Baptista、S. P. Azen 和 M. C. Pike,“获得队列研究中风险比的置信区间”,Biometrics,34, 469-474 (1978)。
[2]Hardeo Sahai 和 Anwer Khurshid,流行病学统计,CRC Press LLC,博卡拉顿,佛罗里达州,美国(1996 年)。
例子:
>>> from scipy.stats.contingency import relative_risk >>> result = relative_risk(exposed_cases=10, exposed_total=75, ... control_cases=12, control_total=225) >>> result.relative_risk 2.5 >>> result.confidence_interval() ConfidenceInterval(low=1.1261564003469628, high=5.549850800541033)
相关用法
- Python SciPy RealData.set_meta用法及代码示例
- Python SciPy RectBivariateSpline.__call__用法及代码示例
- Python SciPy RectSphereBivariateSpline.ev用法及代码示例
- Python SciPy RegularGridInterpolator.__call__用法及代码示例
- Python SciPy RectSphereBivariateSpline.__call__用法及代码示例
- Python SciPy RectBivariateSpline.ev用法及代码示例
- Python SciPy Rotation.from_matrix用法及代码示例
- Python SciPy Rotation.__pow__用法及代码示例
- Python SciPy Rotation.magnitude用法及代码示例
- Python SciPy Rotation.as_matrix用法及代码示例
- Python SciPy Rotation.as_euler用法及代码示例
- Python SciPy Rotation.approx_equal用法及代码示例
- Python SciPy Rotation.from_quat用法及代码示例
- Python SciPy Rotation.as_mrp用法及代码示例
- Python SciPy Rotation.from_mrp用法及代码示例
- Python SciPy Rotation.__getitem__用法及代码示例
- Python SciPy Rotation.from_rotvec用法及代码示例
- Python SciPy Rotation.as_quat用法及代码示例
- Python SciPy Rotation.__mul__用法及代码示例
- Python SciPy Rotation.as_rotvec用法及代码示例
- Python SciPy Rotation.apply用法及代码示例
- Python SciPy Rotation.align_vectors用法及代码示例
- Python SciPy Rotation.inv用法及代码示例
- Python SciPy Rotation.random用法及代码示例
- Python SciPy Rotation.from_euler用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.stats._result_classes.RelativeRiskResult.confidence_interval。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。