File: randboot.Rd

package info (click to toggle)
r-cran-ade4 1.7-5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,924 kB
  • sloc: ansic: 4,890; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 1,772 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
\name{randboot}
\alias{as.krandboot}
\alias{print.krandboot}
\alias{as.randboot}
\alias{print.randboot}
\alias{randboot}
\title{Bootstrap simulations}
\description{Functions and classes to manage outputs of bootstrap
  simulations for one (class \code{randboot}) or several (class \code{krandboot}) statistics}
\usage{
as.krandboot(obs, boot, quantiles = c(0.025, 0.975), names =
colnames(boot), call = match.call())
\method{print}{krandboot}(x, ...)
as.randboot(obs, boot, quantiles = c(0.025, 0.975), call = match.call())
\method{print}{randboot}(x, ...)
randboot(object, ...)
}

\arguments{
  \item{obs}{a value (class \code{randboot}) or a vector (class
    \code{krandboot}) with observed statistics}
  \item{boot}{a vector (class \code{randboot}) or a matrix (class
    \code{krandboot}) with the bootstrap values of the statistics}
  \item{quantiles}{a vector indicating the lower and upper quantiles to compute}
  \item{names}{a vector of names for the statistics}
  \item{call}{the matching call}
  \item{x}{an object of class \code{randboot} or \code{krandboot}}
  \item{object}{an object on which bootstrap should be perform}
  \item{\dots}{other arguments to be passed to methods}
}

\value{an object of class \code{randboot} or \code{krandboot}}

\references{Carpenter, J. \& Bithell, J. (2000) Bootstrap confidence
  intervals: when, which, what? A practical guide for medical
  statisticians.\emph{Statistics in medicine}, 19, 1141-1164}

\author{St\'ephane Dray (\email{stephane.dray@univ-lyon1.fr})}

\seealso{\code{\link{randboot.multiblock}}}
\examples{
## 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) 

}

\keyword{htest}