allcoef {regr0} | R Documentation |
A list of all coefficients of a model fit, possibly with respective statistics
allcoef(object, se = 2, df = df.residual(object), ...) ## S3 method for class 'allcoef' 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(d.blast) r.blast <- regr(logst(tremor)~location+log10(distance)+log10(charge), data=d.blast) allcoef(r.blast)