summary.lmfm {robust}R Documentation

Summary Method for lmfm Objects

Description

Computes a summary of the linear models stored in an lmfm object.

Usage

summary.lmfm(object, correlation = FALSE, ...)

Arguments

object an lmfm object.
correlation a logical value. If TRUE, the correlation matrices for the coefficients are included in the summaries.
... additional arguments required by the generic summary function.

Value

a list with class summary.lmfm whose elements are summaries of each model in object.

See Also

fit.models, summary, summary.lmRob, summary.lm.

Examples

data(stack.dat)
stack.fm <- fit.models(list(Robust = "lmRob", LS = "lm"), Loss ~ ., data = stack.dat)
stack.sum <- summary(stack.fm)
stack.sum

[Package robust version 0.2-0 Index]