Description Usage Arguments Value Author(s) References See Also Examples
Functions and classes to manage outputs of bootstrap
simulations for one (class randboot
) or several (class krandboot
) statistics
1 2 3 4 5 6 7 8 | as.krandboot(obs, boot, quantiles = c(0.025, 0.975), names =
colnames(boot), call = match.call())
## S3 method for class 'krandboot'
print(x, ...)
as.randboot(obs, boot, quantiles = c(0.025, 0.975), call = match.call())
## S3 method for class 'randboot'
print(x, ...)
randboot(object, ...)
|
obs |
a value (class |
boot |
a vector (class |
quantiles |
a vector indicating the lower and upper quantiles to compute |
names |
a vector of names for the statistics |
call |
the matching call |
x |
an object of class |
object |
an object on which bootstrap should be perform |
... |
other arguments to be passed to methods |
an object of class randboot
or krandboot
St\'ephane Dray (stephane.dray@univ-lyon1.fr)
Carpenter, J. \& Bithell, J. (2000) Bootstrap confidence intervals: when, which, what? A practical guide for medical statisticians.Statistics in medicine, 19, 1141-1164
1 2 3 4 5 | ## an example corresponding to 10 statistics and 100 repetitions
bt <- as.krandboot(obs = rnorm(10), boot = matrix(rnorm(1000), nrow = 100))
bt
if(adegraphicsLoaded())
plot(bt)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.