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
|
\name{rb.lmRob}
\alias{rb.lmRob}
\title{Robust Bootstrap Standard Errors}
\description{
Computes a robust bootstrap estimate of the standard error for each coefficient estimate in a robustly fitted linear model. This function is called by \code{\link{summary.lmRob}} and is not intended to be called directly by users.
}
\usage{
rb.lmRob(lmRob.object, M = 1000, seed = 99, fixed = TRUE)
}
\arguments{
\item{lmRob.object}{an lmRob object.}
\item{M}{a positive integer giving the number of bootstrap subsamples.}
\item{seed}{a positive integer specifying the seed for the random number generator.}
\item{fixed}{a logical value. This should be set to \code{TRUE}.}
}
\value{
a numeric vector of robust bootstrap standard error estimates.
}
\seealso{
\code{\link{lmRob}},
\code{\link{summary.lmRob}}.
}
\keyword{robust}
\keyword{regression}
|