Learn R Programming

robust (version 0.3-19)

summary.lmfm: Summary Method for lmfm Objects

Description

Compute a summary of each lm or lmRob model in a summary.lmfm object.

Usage

## S3 method for class 'lmfm':
summary(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

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

Run the code above in your browser using DataLab