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
|
\name{summary.glmRob}
\alias{summary.glmRob}
\title{Summarizing Robust Generalized Linear Model Fits}
\description{
Compute a summary of the robustly fitted generalized linear model.
}
\usage{
\method{summary}{glmRob}(object, correlation = TRUE, ...)
}
\arguments{
\item{object}{a glmRob object.}
\item{correlation}{a logical value. If \code{TRUE} then the correlation matrix of the coefficients is included in the summary.}
\item{\dots}{additional arguments required by the generic \code{\link{summary}} function.}
}
\value{
The summary is returned in a list of class summary.glmRob and contains the following components:
\item{comp1 }{Description of 'comp1'}
\item{comp2 }{Description of 'comp2'}
...
}
\examples{
data(breslow.dat)
bres.rob <- glmRob(sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat)
bres.sum <- summary(bres.rob)
bres.sum
}
\keyword{methods}
\keyword{robust}
\keyword{regression}
|