| glance.mixpoissonreg {mixpoissonreg} | R Documentation |
Glance at a mixpoissonreg object
Description
Glance accepts a mixpoissonreg object and returns a
tibble::tibble() with exactly one row of model summaries.
The summaries are Efron's pseudo-R^2, degrees of freedom, AIC, BIC, log-likelihood,
the type of model used in the fit ('NB' or 'PIG'), the total number of observations and the estimation method.
Usage
## S3 method for class 'mixpoissonreg'
glance(x, ...)
Arguments
x |
A |
... |
Additional arguments. Currently not used. |
Value
A tibble::tibble() with exactly one row and columns:
-
efron.pseudo.r2Efron's pseudo-R^2, that is, the squared correlation between the fitted values and the response values. -
df.nullDegrees of freedom used by the null model. -
logLikThe log-likelihood of the model. -
AICAkaike's Information Criterion for the model. -
BICBayesian Information Criterion for the model. -
df.residualResidual degrees of freedom. -
nobsNumber of observations used. -
model.typeType of model fitted, "NB" or "PIG". -
est.methodThe estimation method of the fitted model, "EM" or "ML".
See Also
augment.mixpoissonreg, tidy.mixpoissonreg, tidy_local_influence.mixpoissonreg,
autoplot.mixpoissonreg, local_influence_autoplot.mixpoissonreg