plotBoot {RcmdrMisc} | R Documentation |
Plot Bootstrap Distributions
Description
The function takes an object of class "boot"
and creates an array of density estimates for the bootstrap distributions of the parameters.
Usage
plotBoot(object, confint=NULL, ...)
## S3 method for class 'boot'
plotBoot(object, confint=NULL, ...)
Arguments
object |
an object of class |
confint |
an object of class |
... |
not used |
Details
Creates an array of adaptive kernal density plots, using densityPlot
in the car package, showing the bootstrap distribution, point estimate ,and (optionally) confidence limits for each parameter.
Value
Invisibly returns the object produced by densityPlot
.
Author(s)
John Fox jfox@mcmaster.ca
See Also
Examples
## Not run:
plotBoot(Boot(lm(prestige ~ income + education + type, data=Duncan)))
## End(Not run)
[Package RcmdrMisc version 2.9-1 Index]