Learn R Programming

gkwreg (version 2.1.6)

print.gkwreg: Print Method for Generalized Kumaraswamy Regression Models

Description

Print method for objects of class "gkwreg". Provides a concise summary of the fitted model following the style of print.lm.

Usage

# S3 method for gkwreg
print(x, digits = max(3, getOption("digits") - 3), ...)

Value

The object x, invisibly.

Arguments

x

An object of class "gkwreg", typically obtained from gkwreg.

digits

Minimum number of significant digits to print. Default is max(3, getOption("digits") - 3).

...

Additional arguments passed to or from other methods.

Author

Lopes, J. E.

Details

The print method provides a concise overview of the fitted model, showing: the call, deviance residuals summary, coefficient estimates, link functions, and basic fit statistics. For more detailed output including standard errors and significance tests, use summary.gkwreg.

See Also

gkwreg, summary.gkwreg

Examples

Run this code
# \donttest{
data(GasolineYield)
fit <- gkwreg(yield ~ batch + temp, data = GasolineYield, family = "kw")
print(fit)

# With more digits
print(fit, digits = 5)
# }

Run the code above in your browser using DataLab