Skip to contents

Extracts the call that was used to fit a Generalized Kumaraswamy regression model.

Usage

# S3 method for class 'gkwreg'
getCall(x, ...)

Arguments

x

An object of class "gkwreg".

...

Currently not used.

Value

The matched call.

See also

Author

Lopes, J. E.

Examples

# \donttest{
data(GasolineYield)
fit <- gkwreg(yield ~ batch + temp, data = GasolineYield, family = "kw")
#> Warning: NaNs produced
getCall(fit)
#> gkwreg(formula = yield ~ batch + temp, data = GasolineYield, 
#>     family = "kw")
# }