简体   繁体   English

如何在缺陷跟踪中计算误报率? 在我总共有334个bug的情况下,其中57个是“不是问题”类型

[英]How to calculate False Positive ration in defect tracking? In a scenario where I have 334 bugs in total out of which 57 are “Not an Issue” type

How to calculate False Positive rate in a scenario where I have 334 bugs in total out of which 57 are Not an Issue type? 在我总共有334个错误(其中57个不是问题类型)的情况下,如何计算误报率 I believe 57 are false positives in this scenario 我相信在这种情况下57个是误报

The term false positive ratio, also known as the false alarm ratio, usually refers to the probability of falsely rejecting the null hypothesis for a particular test. 术语误报率,也称为误报率,通常是指针对特定测试错误拒绝无效假设的概率。 The false positive rate is calculated as the ratio between the number of negative events wrongly categorized as positive (false positives) and the total number of actual negative events (regardless of classification). 误报率的计算方法是:错误分类为阳性的阴性事件数(假阳性)与实际阴性事件总数(与分类无关)之间的比率。

The false positive rate is FP/N = FP/FP+TN 误报率是FP / N = FP / FP + TN

where FP is the number of false positives, TN is the number of true negatives and N=FP+TN is the total number of negatives. 其中FP是假阳性的数量,TN是真阴性的数量,N = FP + TN是阴性的总数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我如何使它更有效-考虑分数 n/d,其中 n 和 d 是正整数 - How do I make this more efficient- Consider the fraction, n/d, where n and d are positive integers Neoload在方案的比较报告中“%”是什么意思,以及如何计算%? - Neoload What does it mean “%” in a comparison report of both Scenario and how calculate the %? 如何在javascript中计算页面的总传输大小? - How to calculate total transfer size of a page in javascript? 在数据映射器模式中,是否值得跟踪哪些字段已更改? - In the data mapper pattern, is it worth tracking which fields have changed? 如何在以下方案中提高性能 - How would I improve the performance in the following scenario 如何计算图中各个顶点之间的总距离? - How to calculate the total distance between various vertices in a graph? 计算复选框总数 - Calculate total of check boxes 如何在多站点场景中提高 CVS 性能? - How can I improve CVS performance in a multi-site scenario? 如何提高计算运行总计的 select 语句的性能 - How to improve performance of a select statement, which calculates a running total 在这种情况下,如何使MySQL像平面文件一样快? - How can I make MySQL as fast as a flat file in this scenario?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM