factoreffects {lassogrp} | R Documentation |
A list of all coefficients of a model fit, possibly with respective statistics
factoreffects(object, se = 2, df = df.residual(object), ...) ## S3 method for class 'faceff' print(x, columns=NULL, transpose=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 |
Arguments for print
:
x |
object of class |
columns |
the columns of the tables to be printed. |
transpose |
logical. should the tables be transposed for printing? |
... |
absorbs further arguments of call to generic function |
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 |
Werner A. Stahel
data(asphalt) dd <- asphalt dd$VOIDSclass <- cut(dd$VOIDS, c(3.5, 4.5, 5, 5.5, 6.5)) rr <- lm(log10(RUT) ~ log10(VISC) + ASPH + BASE + VOIDSclass + RUN, data=dd) factoreffects(rr)