hist.simpleboot(simpleboot)
hist.simpleboot()所属R语言包:simpleboot
Histograms for bootstrap sampling distributions.
自举抽样分布的直方图。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Construct a histogram of the bootstrap distribution of univariate statistic.
建设引导的单变量统计分布的直方图。
用法----------Usage----------
## S3 method for class 'simpleboot':
hist(x, do.rug = FALSE, xlab = "Bootstrap samples", main = "", ...)
参数----------Arguments----------
参数:x
An object of class "simpleboot" returned from either one.boot, two.boot, or pairs.boot.
类的一个对象"simpleboot"是one.boot返回,two.boot或pairs.boot。
参数:do.rug
Should a rug of the bootstrap distribution be plotted under the histogram?
如果地毯的自助分布绘制的直方图?
参数:xlab
The label for the x-axis.
的x-轴的标签。
参数:main
The title for the histogram.
标题为直方图。
参数:...
Other arguments passed to hist.
其他参数传递给hist。
Details
详细信息----------Details----------
hist constructs a histogram for the bootstrap distribution of a univariate statistic. It cannot be used with linear model or loess bootstraps. In the histogram a red dotted line is plotted denoting the observed value of the statistic.
hist构建了一个单变量统计分布直方图的引导。它不能使用线性模型或黄土白手起家的。直方图中的红色虚线绘制表示所观察到的值的统计量。
值----------Value----------
Nothing is returned.
不返回任何值。
(作者)----------Author(s)----------
Roger D. Peng
实例----------Examples----------
x <- rnorm(100)
## Bootstrap the 75th percentile[引导第75百分位]
b <- one.boot(x, quantile, R = 1000, probs = 0.75)
hist(b)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|