numFP(puma)
numFP()所属R语言包:puma
Number of False Positives for a given proportion of True Positives.
误报为真阳性的比例数。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Often when evaluating a differential expression method, we are interested in how well a classifier performs for very small numbers of false positives. This method gives one way of calculating this, by determining the number of false positives for a set proportion of true positives.
经常评估差异表达方法时,我们有兴趣在如何以及执行误报非常小的数字分类。此方法提供了一种计算的方法,确定为真阳性的比例误报数量。
用法----------Usage----------
numFP(scores, truthValues, TPRate = 0.5)
参数----------Arguments----------
参数:scores
A vector of scores. This could be, e.g. one of the columns of the statistics of a DEResult object.
一个分数的向量。这可能是,例如:之一DEResult对象的统计列。
参数:truthValues
A boolean vector indicating which scores are True Positives.
一个布尔向量表示哪些分数是真阳性。
参数:TPRate
A number between 0 and 1 identify the proportion of true positives for which we wish to determine the number of false positives.
0和1之间的数字标识,我们希望,以确定误报数量的真阳性的比例。
值----------Value----------
An integer giving the number of false positives.
一个整数,误报数量。
作者(S)----------Author(s)----------
Richard D. Pearson
参见----------See Also----------
Related methods plotROC and calcAUC.
相关的方法plotROC和calcAUC。
举例----------Examples----------
class1a <- rnorm(1000,0.2,0.1)
class2a <- rnorm(1000,0.6,0.2)
class1b <- rnorm(1000,0.3,0.1)
class2b <- rnorm(1000,0.5,0.2)
scores_a <- c(class1a, class2a)
scores_b <- c(class1b, class2b)
classElts <- c(rep(FALSE,1000), rep(TRUE,1000))
print(numFP(scores_a, classElts))
print(numFP(scores_b, classElts))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|