perc(simpleboot)
perc()所属R语言包:simpleboot
Extract percentiles from a bootstrap sampling distribution.
提取百分位数的bootstrap抽样分布。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
perc can be used to extract percentiles from the sampling distribution of a statistic.
perc可以用来提取百分位数的抽样分布的统计。
用法----------Usage----------
perc(boot.out, p = c(0.025, 0.975))
perc.lm(lm.boot.obj, p)
参数----------Arguments----------
参数:boot.out
Output from either one.boot, two.boot, or pairs.boot.
输出是one.boot,two.boot或pairs.boot。
参数:p
numeric vector with values in [0, 1].
数值向量的值在[0,1]。
参数:lm.boot.obj
An object of class "lm.simpleboot", returned from lm.boot.
类的一个对象"lm.simpleboot",lm.boot返回。
Details
详细信息----------Details----------
perc automatically calls perc.lm if boot.out is of the class "lm.simpleboot" so there is no need to use perc.lm separately.
perc自动调用perc.lm boot.out如果之类的"lm.simpleboot"“这样有没有必要使用perc.lm分别。
值----------Value----------
For bootstraps which are not linear model bootstraps, perc returns a vector of percentiles of length length(p). Linear interpolation of percentiles is done if necessary. perc.lm returns a matrix of percentiles of each of the model coefficients. For example, if there are k model coefficients, the perc.lm returns a length(p) by k matrix.
对于白手起家不是线性的模型白手起家,perc返回一个向量的长度length(p)百分点。线性插值百分如果必要的话。 perc.lm返回每个模型系数的百分位数的一个矩阵。例如,如果有k个模型系数,perc.lm返回一个length(p)k矩阵。
(作者)----------Author(s)----------
Roger D. Peng
实例----------Examples----------
x <- rnorm(100)
b <- one.boot(x, median, R = 1000)
perc(b, c(.90, .95, .99))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|