someMTP.object class(someMTP)
someMTP.object class()所属R语言包:someMTP
Class "someMTP.object" for storing the result of the function fdrOrd
用于存储结果的功能fdrOrd的的类“someMTP.object”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The class someMTP.object is the output of a call to
类someMTP.object是输出一个呼叫
插槽----------Slots----------
rej:a logical vector indicating whenever the related hypotesis have been rejected.
rej:一个逻辑向量,相关hypotesis时被拒绝。
p:The vector of (raw) p-values used in the procedure.
p:(原始)的向量的过程中所用的p-值。
ord:The vector used to sort the p-values (decreasing).
ord:矢量用于排序的p值(递减)。
idOrd:The vector of indices used in sorting.
idOrd:矢量指数排序中使用的。
MTP:The type of procedure used.
MTP:使用的程序的类型。
GD:A logical value incating if the correction for General Dependence have been used or not.
GD:A的逻辑值incating如果一般依赖的修正已使用或不。
q:The level of contrelled FDR when MTP=="fdrOrd".
q:FDR contrelled的水平时,MTP ==“fdrOrd”的。
k:The number of false rejection when MTP=="kfweOrd"
k:一些虚假的拒绝时,MTP ==“kfweOrd”
J:The number of allowed Jumps when MTP=="kfweOrd"
J:允许跳跃的数量MTP ==“kfweOrd”
alpha:The significance level when MTP=="kfweOrd"
alpha:显着性水平时,MTP ==“kfweOrd”的
alphaprime:The significance level of individual tests.
alphaprime:个人测试的显着性水平。
call:The cal that generates the object.
call:CAL产生的对象。
方法----------Methods----------
showsomeMTP.object: Prints the test results.
showsomeMTP.object:打印测试结果。
summarysomeMTP.object: Prints the test results (as show).
summarysomeMTP.object:打印测试结果(show)。
drawsomeMTP.object: Plots results; what = c("all","ordVsP", "stepVsR")
drawsomeMTP.object:绘图结果,“what = c("all","ordVsP", "stepVsR")
sortsignature(x = "someMTP.object"): Sorts the p-values to decreasing order of ord.
排序signature(x = "someMTP.object"):p-值进行排序递减顺序ord。
lengthsignature(x = "someMTP.object"): The number of tests performed.
长度signature(x = "someMTP.object"):执行测试的数量。
namessignature(x = "someMTP.object"): Extracts the row names of the results matrix.
名signature(x = "someMTP.object"):提取的结果矩阵的行名。
names<-signature(x = "someMTP.object"): Changes the row names of the results matrix. Duplicate names are not allowed, but see alias.
名称< - signature(x = "someMTP.object"):更改的结果矩阵的行名。重复的名称是不允许的,,但看到alias。
(作者)----------Author(s)----------
Livio Finos: <a href="mailto:livio@stat.unipd.it">livio@stat.unipd.it</a>
参见----------See Also----------
someMTP.object
someMTP.object
实例----------Examples----------
# Simple examples with random data[用随机数据的简单例子]
set.seed(17)
x=matrix(rnorm(60),3,20)
x[,1:10]=x[,1:10]+2 ##variables 1:10 have tests under H1[#变量1:10有H1的测试下]
ts=apply(x,2,function(x) t.test(x)$statistic)
ps=apply(x,2,function(x) t.test(x)$p.value)
m2=apply(x^2,2,mean)
pOrd <- fdrOrd(ps,q=.05,ord=m2)
pOrd
length(pOrd)
names(pOrd) <- paste("V",1:20,sep="")
names(pOrd)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|