print.gkwfit | R Documentation |
Prints a concise summary of a model fitted by the gkwfit
function,
displaying the call, estimated coefficients, log-likelihood, AIC, BIC,
number of observations, and a convergence warning if applicable.
## S3 method for class 'gkwfit'
print(x, digits = max(3, getOption("digits") - 3), ...)
x |
An object of class |
digits |
Integer; the minimum number of significant digits to be printed in values.
Defaults to |
... |
Additional arguments passed to underlying print methods (currently unused). |
Invisibly returns the original input object x
. Called for its side effect of printing to the console.
Lopes, J. E.
gkwfit
, summary.gkwfit
# Generate a small sample from Kumaraswamy distribution
set.seed(2203)
y <- rkw(50, alpha = 2.5, beta = 1.5)
# Fit the model with minimal options for speed
fit <- gkwfit(data = y, family = "kw", plot = FALSE, silent = TRUE)
# Print method displays concise model summary
print(fit)
# Alternative: object prints automatically when returned
fit
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.