termeffects {relevance}R 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, ...) 
## S3 method for class 'termeffects'
print(x, columns=NULL, printstyle=NULL, transpose=FALSE,
  single = FALSE, ...)

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?

Arguments for print:

x

object of class termeffects, produced by termeffects(...)

columns

the columns of the tables to be printed. NULL selects all the columns.

printstyle

determines which columns are selected if columns is NULL.

transpose

logical. should the tables be transposed for printing?

single

logical. should components with a single coefficient be printed?

...

absorbs further arguments of call to generic function

Value

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

Author(s)

Werner A. Stahel

See Also

dummy.coef, termtable

Examples

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

[Package relevance version 1.0 Index]