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
|
\name{weibullRob}
\title{Robust Estimation of Weibull Distribution Parameters}
\alias{weibullRob}
\description{
Robust estimation of Weibull distribution parameters.
}
\usage{
weibullRob(x, estim = c("M", "tdmean"), control = weibullRob.control(estim, \dots), \dots)
}
\arguments{
\item{x}{a numeric vector containing the sample.}
\item{estim}{a character string specifying which estimator to use.}
\item{control}{a list of control parameters appropriate for the estimator in \code{estim}.}
\item{\dots}{control parameters may also be given here.}
}
\value{
a list of class \dQuote{fitdstn} containing the following elements:
\item{estimate}{a named numeric vector containing the parameter estimates.}
\item{sd}{a named numeric vector containing the standard deviations of the parameter estimates.}
\item{vcov}{a numeric matrix containing the variance-covariance matrix of the estimated parameter vector.}
\item{mu}{a single numeric value containing an estimate of the mean.}
\item{V.mu}{a single numeric value containing the variance of the estimated mean.}
\item{control}{a list containing the control parameters used by the estimator.}
The \code{print} method displays the estimated parameters and their standard errors (in parentheses).
}
\seealso{
\code{\link{weibullRob.control}}, \code{\link{fitdstnRob}}.
}
\keyword{robust}
|