0
Q
靈敏度和特異性
A
回答
0
This page on SAS support給出的代碼如下:
title 'Sensitivity';
proc freq data=FatComp;
where Response=1;
weight Count;
tables Test/binomial(level="1");
exact binomial;
run;
title 'Specificity';
proc freq data=FatComp;
where Response=0;
weight Count;
tables Test/binomial(level="0");
exact binomial;
run;
title 'Positive predictive value';
proc freq data=FatComp;
where Test=1;
weight Count;
tables Response/binomial(level="1");
exact binomial;
run;
title 'Negative predictive value';
proc freq data=FatComp;
where Test=0;
weight Count;
tables Response/binomial(level="0");
exact binomial;
run;
相關問題
- 1. 靈敏度/特異性與R中的截點繪圖?
- 2. BackgroundSubtractorMOG靈敏度
- 3. iScroll的靈敏度
- 4. .NET屬性更改了靈敏度
- 5. 根據敏感度和特異性確定閾值
- 6. 靈敏度分析和數據表
- 7. 計算特定值的截止值和靈敏度?
- 8. 調整SimpleOnGestureListener.onFling()靈敏度
- 9. 靈敏度列表錯誤
- 10. ds觸摸屏靈敏度
- 11. Android SeekBar觸摸靈敏度
- 12. iPhone滑塊靈敏度
- 13. 更改UIPageViewController的靈敏度
- 14. DrawerLayout修改靈敏度?
- 15. 滑動效果靈敏度
- 16. 麥克風靈敏度
- 17. 觸摸屏靈敏度
- 18. R靈敏度包(fast99)
- 19. 觸摸屏靈敏度
- 20. Pyomo靈敏度分析
- 21. ScrollView的靈敏度iOS
- 22. JQTouch壓力靈敏度
- 23. R:如何通過使用<code>printcp</code>計算rpart包樹的靈敏度和特異性
- 24. 如何計算ROCR包裝中指定截斷值的平均靈敏度和特異性?
- 25. iPhone加速度計靈敏度
- 26. 調整UICollectionView滾動速度/靈敏度
- 27. 調整qooxdoo滾動速度/靈敏度
- 28. R混淆矩陣的敏感性和特異性標籤
- 29. Codeigniter,Postgresql和鍵不靈敏
- 30. 機器學習:如何在誤差計算中包含靈敏度或特異性?