summary.msme | R Documentation |
This function provides a compact summary for fitted models.
## S3 method for class 'msme'
summary(object, ...)
object |
the fitted model. |
... |
optional arguments to be passed through. |
The function prints out a summary and returns an invisible list with useful objects.
call |
the call used to fit the model. |
coefficients |
a dataframe of estimates, standard errors, etc. |
deviance |
deviance from the model fit. |
null.deviance |
deviance from the null model fit. |
df.residual |
residual degrees of freedom from the model fit. |
df.null |
residual degrees of freedom from the null model fit. |
Andrew Robinson and Joe Hilbe.
Hilbe, J.M., and Robinson, A.P. 2013. Methods of Statistical Model Estimation. Chapman & Hall / CRC.
data(medpar)
ml.poi <- ml_glm(los ~ hmo + white,
family = "poisson",
link = "log",
data = medpar)
summary(ml.poi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.