File: summary.glmRob.Rd

package info (click to toggle)
r-cran-robust 0.7-5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,548 kB
  • sloc: fortran: 11,898; ansic: 741; sh: 13; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 977 bytes parent folder | download
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}