Formats and prints the summary output of a fitted Generalized Kumaraswamy
(GKw) regression model (objects of class "summary.gkwreg"
).
# S3 method for summary.gkwreg
print(
x,
digits = max(3, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"),
...
)
Invisibly returns the original input object x
. This allows the
output of print()
to be assigned, but it primarily prints the formatted
summary to the console.
An object of class "summary.gkwreg"
, typically the result of
a call to summary.gkwreg
.
Integer, controlling the number of significant digits to print.
Defaults to max(3, getOption("digits") - 3)
.
Logical. If TRUE
, significance stars are printed
next to the p-values in the coefficient table. Defaults to the value of
getOption("show.signif.stars")
.
Additional arguments, currently ignored by this method.
Lopes, J. E.
This is the print method for objects created by summary.gkwreg
.
It formats the summary information for display in the console. It is typically
invoked automatically when print()
is called on a summary.gkwreg
object, or simply by typing the name of the summary object in an interactive R session.
The output includes:
Model family and the original function call.
Summary statistics for residuals.
A coefficient table with estimates, standard errors, z-values, and
p-values, optionally marked with significance stars (using
printCoefmat
).
Confidence intervals for coefficients (if available).
Link functions used for each parameter.
Mean values of the fitted distribution parameters.
Key model fit statistics (LogLik, AIC, BIC, RMSE, R^2, etc.).
Convergence status and number of iterations.
summary.gkwreg
, gkwreg
,
printCoefmat