sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频教程)

https://study.163.com/course/introduction.htm?courseId=1005269003&utm_campaign=commission&utm_source=cp-400000000398149&utm_medium=share

医药统计项目联系:QQ :231469242

https://wenku.baidu.com/view/8d506a9cda38376baf1fae84.html

sensitivity 敏感性:患病且检测阳性概率

specificity特异性:健康且检测阴性概率

ppv(positive predict value)阳性预测值:指机器检查后,患病概率多高,这和疾病流行程度有关

npv(negative predict value)阴性预测值:指机器检查后,非患病概率多高,这和疾病流行程度有关

但现实中机器会把很多正常人也检查出阳性,所以没病的人也可能检查出阳性

所以阳性预测值和阴性预测值可以很好预测你检查结果后,患病概率

阳性还和疾病流行程度有关,疾病是罕见病,即使机器检测阳性,概率也不会很高

阳性预测率:当你被检查出阳性时,你想知道你真的患病概率。

阳性预测率=患病且检查出阳性数量/(患病且被诊断阳性数量+不患病且被诊断阳性数量)

阴性预测率:检查阴性时,健康概率

阴性预测率=不患病且检查出阴性数量/(患病且被诊断阴性数量+不患病且被诊断阴性数量)

案例中,总人口1000人(A+B+C+D),90%患病率,机器敏感度低50%,但阳性预测值高90%

如果疾病流行度很低,10%感染率,虽然敏感度50%,但阳性预测率只有10%

阴性时,用于排除疾病

用于前期筛选工具

敏感度和疾病流行程度无关

For example, pregnancy tests have a high sensitivity: when a woman is pregnant,
the probability that the test is positive is very high.
In contrast, an indicator for an attack with atomic weapons on the White House
should have a very high specificity: if there is no attack, the probability that the
indicator is positive should be very, very small.
While sensitivity and specificity characterize a test and are independent of
prevalence, they do not indicate what portion of patients with abnormal test results
are truly abnormal. This information is provided by the positive/negative predictive
value (PPV/NPV). These are the values relevant for a doctor diagnosing a patient:
when a patient has a positive test result, how likely is it that the patient is in fact sick?
Unfortunately, as Fig. 7.8 indicates, these values are affected by the prevalence of the
disease. The prevalence of a disease indicates how many out of 100,000 people are
affected by it; in contrast, the incidence gives the number of newly diagnosed cases
per 100,000 people. In summary, we need to know the prevalence of the disease as
well as the PPV/NPV of a test to provide a sensible interpretation of medical test
results.
Take for example a test where a positive test results implies a 50% chance
of having a certain medical condition. If half the population has this condition,
a positive test result tells the doctor nothing. But if the condition is very rare, a
positive test result indicates that the patient has a fifty–fifty chance of having this
rare condition—a piece of information that is very valuable.
Figure 7.8 shows how the prevalence of a disease affects the interpretation
of diagnostic results, with a test with a given specificity and sensitivity: a high
prevalence of the disease increases the PPV of the test, but decreases the NPV;
and a low prevalence does exactly the opposite. Figure 7.9 gives a worked example.

疾病流行率与阳性预测值关系密切

即使敏感度很高,但ppv也可能低,因为机器预测阳性错误的数量太多。所以敏感度也不是唯一判断金指标

最新文章

  1. js通过注册表找到本地软件安装路径并且执行
  2. 中国UTM分区
  3. 【网络编程】——connect函数遇见EINTR的处理
  4. linux下proc里关于磁盘性能的参数
  5. 现在有T1、T2、T3三个线程,怎样保证T2在T1执行完后执行,T3在T2执行完后执行?使用Join
  6. unity3d打包和包的使用
  7. 解决 iReport 生成 pdf 时显示不出中文的问题
  8. 小试牛刀——python接口测试小框架
  9. Linux下彻底删除oracle步骤【转】
  10. 教你上传本地代码到github转载
  11. VisualSFM+PMVS生成稠密点云
  12. 《javascript设计模式与开发实践》阅读笔记(16)—— 状态模式
  13. 部署Chart应用并使用.net core读取Kubernetes中的configMap
  14. 【推荐】桌面版AI伴侣 含2.47 2.49 2.51汉化版
  15. H5页面的高度宽度100%
  16. Java 8 新特性7-方法引用、继承
  17. Koa源码分析(二) -- co的实现
  18. Array and Linkedlist区别与操作的时间复杂度(转载)
  19. 【干货】已Window7 系统为例,谈谈boot引导程序-------附带看看数据隐藏
  20. SparkSQL ThriftServer服务的使用和程序中JDBC的连接

热门文章

  1. 实现属于自己的TensorFlow(二) - 梯度计算与反向传播
  2. 英文Datasheet没那么难读
  3. Linux java项目冲突不能正常运行
  4. Alpha发布_文案+美工
  5. 【Alpha】阶段第三次Scrum Meeting
  6. 软工实践-Alpha 冲刺 (4/10)
  7. Task Class .net4.0异步编程类
  8. VS2013安装及单元测试
  9. jQuery之回到顶部
  10. 剖析Vue原理&实现双向绑定MVVM-2