termeffects: all coefficients of a model fit

Description Usage Arguments Value Author(s) See Also Examples

Description

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

Usage

1
2
3
termeffects(object, se = 2, df = df.residual(object), ...) 
## S3 method for class 'termeffects'
print(x, columns=NULL, transpose=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

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.

transpose

logical. should the tables be transposed for printing?

...

absorbs further arguments of call to generic function

Value

list with a component for each term in the model formula. The components are either vectors of coefficients (if se is false, else data.frames with columns

coef

Author(s)

Werner A. Stahel

See Also

dummy.coef

Examples

1
2
3
4
  data(d.blast)
  r.blast <-
  regr(logst(tremor)~location+log10(distance)+log10(charge), data=d.blast)
  termeffects(r.blast)

regr0 documentation built on May 2, 2019, 4:52 p.m.

Related to termeffects in regr0...