summary
method for class "glmrob"
summarizes robust fits of (currently only discrete) generalized linear
models.## S3 method for class 'glmrob':
summary(object, correlation = FALSE, symbolic.cor = FALSE, \dots)
## S3 method for class 'glmrob':
vcov(object, \dots)
## S3 method for class 'summary.glmrob':
print(x, digits = max(3, getOption("digits") - 3),
symbolic.cor = x$symbolic.cor,
signif.stars = getOption("show.signif.stars"), ...)
"glmrob"
, usually, a result of
a call to glmrob
.TRUE
, the correlation matrix of
the estimated parameters is returned and printed.TRUE
, print the correlations in
a symbolic form (see symnum
) rather than as numbers."summary.glrob"
.summary.glmrob
computes and returns a list
of summary statistics of the robustly fitted linear model given in
object
. The following elements are in the list:summary.glmrob
returns an object of class
"summary.glmrob"
.
Its print()
method tries to be smart about formatting the
coefficients, standard errors, etc, and gives
signif.stars
is TRUE
(as per default when options
where not changed).glmrob
; the generic summary
and
also summary.glm
.data(epilepsy)
Rmod <- glmrob(Ysum ~ Age10 + Base4*Trt, family = poisson,
data = epilepsy, method= "Mqle")
ss <- summary(Rmod)
ss ## calls print.summary.glmrob()
str(ss) ## internal STRucture of summary object
Run the code above in your browser using DataLab