dks.pvalue(dks)
dks.pvalue()所属R语言包:dks
Frequentist diagnostic test for multiple testing p-values.
frequentist诊断测试的多个测试的p值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function accepts a matrix of simulated null p-values where each column corresponds to the p-values from a single simulated study. The null p-values should represent a subset of all the simulated p-values corresponding to the tests with no signal.
这个函数接受一个矩阵的模拟空P-值,每一列对应的p值从一个单一的模拟研究。空的p值应该代表所有相应的模拟p值没有信号测试的一个子集。
用法----------Usage----------
dks.pvalue(P)
参数----------Arguments----------
参数:P
An m0 x B matrix of null p-values, each column corresponds to the p-values from a single simulated study.
一个M0 x B的空矩阵p-值,每一列对应的p值从一个单一的模拟研究。
Details
详情----------Details----------
The dks.pvalue function performs the double Kolmogorov-Smirnov test outlined in Leek and Storey (2009). The p-values should be simulated from a realistic distribution and only the null p-values should be passed to the dks.pvalue function.
dks.pvalue功能执行韭菜和层高(2009年)中列出的双重Kolmogorov-Smirnov检验。 P-值应该是模拟从一个现实的分布,只有空的p值应通过的dks.pvalue功能。
值----------Value----------
参数:dkspvalue
The double Kolmogorov-Smirnov p-value.
柯尔莫哥洛夫 - 斯米尔诺夫双p值。
参数:kspvalue
A B-vector of the Kolmogorov-Smirnov p-values one for each test.
B-柯尔莫哥洛夫 - 斯米尔诺夫p值为每个测试向量。
作者(S)----------Author(s)----------
Jeffrey T. Leek <a href="mailto:jleek@jhsph.edu">jleek@jhsph.edu</a>
参考文献----------References----------
参见----------See Also----------
pprob.uniform, dks, pprob.dist,cred.set
pprob.uniform,dks,pprob.dist,cred.set
举例----------Examples----------
## Load data[#将数据]
data(dksdata)
## Calculate the double KS p-value[#计算KS p-值双]
dksp <- dks.pvalue(P)
dksp$dkspvalue
## Histogram of the distribution of KS test p-values[#KS检验的p值分布直方图]
hist(dksp$kspvalue)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|