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.
# \donttest{data(GasolineYield)
fit <- gkwreg(yield ~ batch + temp, data = GasolineYield, family = "kw")
print(fit)
# With more digitsprint(fit, digits = 5)
# }