table.stats(verification)
table.stats()所属R语言包:verification
Verification statistics for a 2 by 2 Contingency Table
2×2列联表的核查统计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides a variety of statistics for a data
提供多种统计数据
用法----------Usage----------
table.stats(obs, pred,silent = FALSE)
参数----------Arguments----------
参数:obs
Either a vector of contingency table counts, a vector of binary observations, or a 2 by 2 matrix in the form of a contingency table. (See note below.)
无论列联表计数,一个向量的二进制观测,或联表的形式的2×2的矩阵中的一个向量。 (参见下面的说明)。
参数:pred
Either null or a vector of binary forecasts.
NULL或者是一个矢量的二进制预测。
参数:silent
Should warning statements be surpressed.
如果警告声明surpressed。
值----------Value----------
参数:tab.out
Contingency table
列联表
参数:TS
Threat score a.k.a. Critical success index (CSI)
威胁得分也称为临界成功指数(CSI)
参数:TS.se
Standard Error for TS
TS的标准误差
参数:POD
Hit Rate aka probability of detection
命中率又名检测概率
参数:POD.se
Standard Error for POD
标准误差POD
参数:M
Miss rate
MISS率
参数:F
False Alarm RATE
误报率
参数:F.se
Standard Error for F
标准误差为F
参数:FAR
False Alarm RATIO
误警率
参数:FAR.se
Standard Error for FAR
标准误差为FAR
参数:HSS
Heidke Skill Score
Heidke技能分数
参数:HSS.se
Standard Error for HSS
标准误差为HSS
参数:PSS
Peirce Skill Score
皮尔斯技能分数
参数:PSS.se
Standard Error for PSS
标准误差为PSS
参数:KSS
Kuiper's Skill Score
柯伊伯技能分数
参数:PC
Percent correct - events along the diagonal.
正确 - 沿对角线的事件。
参数:PC.se
Standard Error for PC
标准误差为PC
参数:BIAS
Bias
偏见
参数:ETS
Equitable Threat Score
公正预兆得分
参数:ETS.se
Standard Error for ETS
对于ETS的标准错误
参数:theta
Odds Ratio
赔率比
参数:log.theta
Log Odds Ratio
登录比值比
参数:LOR.se
Standard Error for Log Odds Ratio
标准错误log胜算比
参数:n.h
Degrees of freedom for log.theta
自由度log.theta
参数:orss
Odds ratio skill score, aka Yules's Q
赔率比技能得分,又名公共秩序的Q
参数:ORSS.se
Standard Error for Odds ratio skill score
赔率比技能得分的标准误差
参数:eds
Extreme Dependency Score
极端依赖分数
参数:esd.se
Standard Error for EDS
标准误差为EDS
参数:seds
Symmetric Extreme Dependency Score
对称极端依赖分数
参数:seds.se
Standard Error for Symmetric Extreme Dependency Score
对称极端依赖分数的标准误差
参数:EDI
Extreme Dependency Index
极端依赖指数
参数:EDI.se
Standard Error for EDI
为EDI的标准错误
参数:SEDI
Symmetric EDI
对称EDI
参数:SEDI.se
Standard Error for SEDI
标准误差SEDI
注意----------Note----------
Initially, table.stats was an internal function used by verify for binary events and multi.cont for categorical events. But occassionally, it is nice to use it directly.
最初中,table.stats是一个内部函数用来验证二进制的事件和multi.cont为绝对的事件。但偶尔,它是好的,它直接使用。
(作者)----------Author(s)----------
Matt Pocernich <pocernic@rap.ucar.edu>
----------References----------
practitioner's guide in atmospheric science. John Wiley and Sons. See chapter 3 concerning categorical events.
参见----------See Also----------
verify and multi.cont
verify和multi.cont
实例----------Examples----------
DAT<- matrix(c(28, 23, 72, 2680 ), ncol = 2) ## Finley[#芬利]
table.stats(DAT)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|