阳/阴性预测值Positive/negative Predictive Value(推荐AA)
sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频教程)
医药统计项目联系: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也可能低,因为机器预测阳性错误的数量太多。所以敏感度也不是唯一判断金指标
阳/阴性预测值Positive/negative Predictive Value(推荐AA)的更多相关文章
- light oj 1294 - Positive Negative Sign
1294 - Positive Negative Sign PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Limit: ...
- 1294 - Positive Negative Sign(规律)
1294 - Positive Negative Sign PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Limit: ...
- 智课雅思短语---二、exert positive/ negative effects on…
智课雅思短语---二.exert positive/ negative effects on… 一.总结 一句话总结:对…产生有利/不利的影响 1.the advantages far outweig ...
- 零宽断言 -- Lookahead/Lookahead Positive/Negative
http://www.vaikan.com/regular-expression-to-match-string-not-containing-a-word/ 经常我们会遇到想找出不包含某个字符串的文 ...
- LightOJ - 1294 - Positive Negative Sign(规律)
链接: https://vjudge.net/problem/LightOJ-1294 题意: Given two integers: n and m and n is divisible by 2m ...
- Amazon评论数据的预处理代码(Positive & Negative)
Amazon评论数据的预处理代码,用于情感分析,代码改自 https://github.com/PaddlePaddle/Paddle/tree/develop/demo/quick_start/da ...
- Python/spss-多元回归建模-共线性诊断2(推荐AA)
sklearn实战-乳腺癌细胞数据挖掘(博客主亲自录制视频教程) https://study.163.com/course/introduction.htm?courseId=1005269003&a ...
- ROC 曲线/准确率、覆盖率(召回)、命中率、Specificity(负例的覆盖率)
欢迎关注博主主页,学习python视频资源 sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频教程) https://study.163.com/course/introduction.ht ...
- 深层解析:构建facebook应用商店推荐引擎
Under the Hood: Building the App Center recommendation engine As more apps on Facebook Platform ha ...
随机推荐
- Wampserver 修改根目录
wampserver 默认根目录在 www 文件夹下 修改根目录方法如下: 1. 在打算存放项目或代码的位置新建文件夹(我建在了C:/MyProject) 2. 打开 httpd.conf 文件(该文 ...
- 第四次ScrumMeeting博客
第四次ScrumMeeting博客 本次会议于10月28日(六)22时整在3公寓725房间召开,持续15分钟. 与会人员:刘畅.辛德泰.窦鑫泽.张安澜.赵奕. 1. 每个人的工作(有Issue的内容和 ...
- python循环结构
while循环 while 条件表达式: 语句块 while语句的条件表达式是循环条件,常用的是关系表达式或者逻辑表达式,语句块是循环执行的语句. n=1 p=1 num=int(input(&quo ...
- Shell脚本初学习
第一个shell程序运行,教程来自:http://jingyan.baidu.com/article/8cdccae947f83e315413cd05.html 代码如下: #!/bin/sh tou ...
- Alpha发布_文案+美工
团队名称:探路者 1蔺依铭:http://www.cnblogs.com/linym762/ 2张恩聚:http://www.cnblogs.com/zej87/ 3米赫:http://www.cnb ...
- 20135208JAVA第二次试验
北京电子科技学院(BESTI) 实 验 报 告 课程:Java程序设计 班级:1352 姓名:贺邦 学号:20135208 成绩: 指导教师:娄嘉鹏 ...
- Java中的网络编程-3
用户数据协议(UDP)是网络信息传输的另外一种形式, 基于UDP的通信不同于基于TCP的通信, 基于UDP的信息传递更快, 但是不提供可靠的保证. 使用UDP传输数据时, 用户无法知道数据能否正确地到 ...
- jQuery异步Deferred
原文链接:http://www.ruanyifeng.com/blog/2011/08/a_detailed_explanation_of_jquery_deferred_object.html 普通 ...
- OSG学习:用多通道(multiple passes)实现透明度
osgFX库提供了一个用于多通道渲染(multi-pass rendering)的框架.每个你想要渲染的子图都应该被添加到osgFX::Effect节点,多通道技术的定义和使用都可以在这个节点中完成. ...
- 【Leetcode】113Path Sum II
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given su ...