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,
rlv.threshold = getOption("rlv.threshold"), ...)
Arguments
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? |
rlv.threshold |
Relevance thresholds, see |
... |
further arguments, passed to |
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)
[Package relevance version 2.1 Index]