View source: R/gkwreg-methods.R
| print.gkwreg | R Documentation |
Print method for objects of class "gkwreg". Provides a concise summary
of the fitted model following the style of print.lm.
## S3 method for class 'gkwreg'
print(x, digits = max(3, getOption("digits") - 3), ...)
x |
An object of class |
digits |
Minimum number of significant digits to print. Default is
|
... |
Additional arguments passed to or from other methods. |
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.
The object x, invisibly.
Lopes, J. E.
gkwreg, summary.gkwreg
data(GasolineYield)
fit <- gkwreg(yield ~ batch + temp, data = GasolineYield, family = "kw")
print(fit)
# With more digits
print(fit, digits = 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.