summary.rsm {marg} | R Documentation |
Summary Method for Regression-Scale Models
Description
Returns a summary list for a fitted regression-scale model.
Usage
## S3 method for class 'rsm'
summary(object, correlation = FALSE, digits = NULL, ...)
Arguments
object |
a fitted |
correlation |
logical argument. If |
digits |
a non-null value specifies the minimum number of significant
digits to be printed in values. If |
... |
absorbs any additional argument. |
Details
This function is a method for the generic function
summary()
for class rsm
. It can be invoked by
calling summary
for an object of the appropriate class, or
directly by calling summary.rsm
regardless of the class of
the object.
Value
A list is returned with the following components:
coefficients |
a matrix with four columns, containing the coefficients, their
standard errors, the |
dispersion |
the value of the scale parameter used in the computations. |
fixed |
a logical value. If |
residuals |
the response residuals. |
cov.unscaled |
the unscaled covariance matrix, i.e, a matrix such that multiplying it by the squared scale parameter, or an estimate thereof, produces an estimated (asymptotic) covariance matrix for the coefficients. |
correlation |
the computed correlation matrix for the coefficients in the model. |
family |
the entire |
loglik |
the computed log likelihood. |
terms |
an object of mode |
df |
the number of degrees of freedom for the model and for the residuals. |
iter |
the number of IRLS iterations used to compute the estimates. |
nas |
a logical vector indicating which, if any, coefficients are missing. |
call |
an image of the call that produced the |
digits |
the value of the |
See Also
Examples
## House Price Data
data(houses)
houses.rsm <- rsm(price ~ ., family = student(5), data = houses)
summary(houses.rsm)