termeffects: All Coefficients of a Model Fit

termeffectsR Documentation

All Coefficients of a Model Fit

Description

A list of all coefficients of a model fit, possibly with respective statistics

Usage

termeffects(object, se = 2, df = df.residual(object), rlv = TRUE,
  rlv.threshold = getOption("rlv.threshold"), ...)

Arguments

object

a model fit, produced, e.g., by a call to lm or regr.

se

logical: Should inference statistics be generated?

df

degrees of freedom for t-test

rlv

logical: Should relevances be calculated?

rlv.threshold

Relevance thresholds, see inference

...

further arguments, passed to inference

Value

a list with a component for each term in the model formula. Each component is a termtable for the coefficients corresponding to the term.

Author(s)

Werner A. Stahel

See Also

dummy.coef, inference, termtable

Examples

  data(d.blast)
  r.blast <-
    lm(log10(tremor)~location+log10(distance)+log10(charge), data=d.blast)
  termeffects(r.blast)

relevance documentation built on May 1, 2023, 5:20 p.m.