本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。