print.gkwreg: Print Method for Generalized Kumaraswamy Regression Models

View source: R/gkwreg-methods.R

print.gkwregR Documentation

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 class 'gkwreg'
print(x, digits = max(3, getOption("digits") - 3), ...)

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.

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.

Value

The object x, invisibly.

Author(s)

Lopes, J. E.

See Also

gkwreg, summary.gkwreg

Examples


data(GasolineYield)
fit <- gkwreg(yield ~ batch + temp, data = GasolineYield, family = "kw")
print(fit)

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



gkwreg documentation built on Nov. 27, 2025, 5:06 p.m.