Last chance! 50% off unlimited learning
Sale ends in
Prints the formatted summary of a gkwfit
model object, generated by
summary.gkwfit
. It displays the call, family, coefficient table
(with estimates, standard errors, z-values, p-values, and significance stars*),
fit statistics (LogLik, AIC, BIC, AICc), number of parameters and observations,
fixed parameters (if any), fit method, convergence status including optimizer
message, and optionally the correlation matrix of coefficients.
Significance stars are shown next to p-values by default if standard errors were available.
# S3 method for summary.gkwfit
print(
x,
digits = max(3L, getOption("digits") - 3L),
signif.stars = getOption("show.signif.stars", TRUE),
...
)
Invisibly returns the original input object x
. Called primarily
for its side effect of printing the summary to the console.
An object of class "summary.gkwfit"
, usually the result of
summary(gkwfit_object)
.
Integer; the minimum number of significant digits to display
for numeric values. Defaults to max(3L, getOption("digits") - 3L)
.
Logical; if TRUE
, p-values are additionally encoded
visually using "significance stars". Defaults to
getOption("show.signif.stars", TRUE)
.
Additional arguments passed to printCoefmat
.
Lopes, J. E. (with refinements)
summary.gkwfit
, gkwfit
, printCoefmat