termeffects {relevance} | R Documentation |
A list of all coefficients of a model fit, possibly with respective statistics
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, ...)
object |
a model fit, produced, e.g., by a call to |
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 |
columns |
the columns of the tables to be printed. |
printstyle |
determines which columns are selected if
|
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 |
list with a component for each term in the model formula.
Each component is a termtable
s for the coefficients
corresponding to the term.
Werner A. Stahel
data(d.blast) r.blast <- lm(log10(tremor)~location+log10(distance)+log10(charge), data=d.blast) termeffects(r.blast)