Skip to contents

Extracts the family specification from a fitted Generalized Kumaraswamy regression model object.

Usage

# S3 method for class 'gkwreg'
family(object, ...)

Arguments

object

An object of class "gkwreg".

...

Currently not used.

Value

A character string indicating the family used in the model.

See also

Author

Lopes, J. E.

Examples

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