sbpval(scaleboot)
sbpval()所属R语言包:scaleboot
Extract P-values
提取的P-值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
sbpval extracts p-values from "summary.scaleboot" or "summary.scalebootv" objects.
sbpval提取物对值"summary.scaleboot"或"summary.scalebootv"对象的。
用法----------Usage----------
sbpval(x, ...)
## S3 method for class 'summary.scaleboot':
sbpval(x,sd=FALSE,select=c("average","best","all"),...)
## S3 method for class 'summary.scalebootv':
sbpval(x,...)
参数----------Arguments----------
参数:x
an object used to select a method.
使用的对象选择方法。
参数:sd
logical. Should standard errors be returned as well?
逻辑。如果标准错误被退回呢?
参数:select
character. If "average" or "best", only the p-values of corresponding models are returned. If "all", then p-values of all the models are returned.
字符。如果“平均”或“最好”,只有p-值返回相应的模型。如果“全部”,然后所有的模型的p值被返回。
参数:...
further arguments passed to or from other methods.
进一步的参数传递给其他方法。
Details
详细信息----------Details----------
This method is used only to extract previously calculated p-values from the summary object.
此方法仅用于提取物,预先计算从摘要对象的p-值。
值----------Value----------
The sbpval method for the class "summary.scaleboot" returns a matrix of p-values. Each row is a vector of p_k for k as specified in the summary method. If sd=TRUE, then it returns a list with two components: estimate for the p-values and sd for its standard errors.
sbpval的方法类"summary.scaleboot"返回一个矩阵的p-值。每一行是一个向量,p_k的k中指定的summary方法。如果sd=TRUE,然后它返回一个列表,包括两部分:estimate的p值和sd其标准错误的。
The sbpval method for the class "summary.scalebootv" returns a list vector with each component obtained by applying sbpval to each "scaleboot" object.
sbpval的方法类"summary.scalebootv"返回一个列表矢量与应用sbpval每一个"scaleboot"对象的每个组件。
(作者)----------Author(s)----------
Hidetoshi Shimodaira
参见----------See Also----------
summary.scaleboot.
summary.scaleboot。
实例----------Examples----------
data(mam15)
a <- mam15.relltest[["t4"]] # an object of class "scaleboot"[对象类“scaleboot”]
b <- summary(a) # calculate p-values[计算p-值]
b # print the p-values[打印的p值]
sbpval(b) # extract a vector of p-values which are averaged by Akaike weights.[提取的矢量平均赤池重量的p-值。]
sbpval(b,sd=TRUE) # with sd[用sd]
sbpval(b,select="all") # extract a matrix of p-values[提取的矩阵的p-值]
sbpval(b,select="all",sd=TRUE) # with sd[用sd]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|