enrichwith (version 0.3.1)

enrich.betareg: Enrich objects of class betareg

Description

Enrich objects of class betareg with any or all of a set of auxiliary functions, the expected information at the maximum likelihood estimator, and the first term in the expansion of the bias of the maximum likelihood estimator.

Usage

# S3 method for betareg
enrich(object, with = "all", ...)

Arguments

object

an object of class betareg

with

a character vector of options for the enrichment of object

...

extra arguments to be passed to the compute_* functions

Value

The object object of class betareg with extra components. get_enrichment_options.betareg() returns the components and their descriptions.

Details

The auxiliary_functions component consists of any or all of the following functions:

  • score: the log-likelihood derivatives as a function of the model parameters; see get_score_function.betareg

  • information: the expected information as a function of the model parameters; see get_information_function.betareg

  • bias: the first-order term in the expansion of the bias of the maximum likelihood estimator as a function of the model parameters; see get_bias_function.betareg

  • simulate: a simulate function for betareg objects that can simulate variates from the model at user-supplied parameter values for the regression parameters (default is the maximum likelihood estimates); see get_simulate_function.betareg

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
if (require("betareg")) {

   data("GasolineYield", package = "betareg")
   gy <- betareg(yield ~ batch + temp, data = GasolineYield)

   # Get a function that evaluates the expected information for gy at supplied parameter values
   gy_info <- get_information_function(gy)
.   # compare standard errors with what `summary` returns
   all.equal(sqrt(diag(solve(gy_info())))[1:11],
             coef(summary(gy))$mean[, 2], check.attributes = FALSE)
.   # evaluating at different parameter values
   gy_info(rep(1, length = 12))

   # Get a function that evaluates the first-order bias of gy at supplied parameter values
   gy_bias <- get_bias_function(gy)
   # compare with internal betareg implementation of bias correction
   gy_bc <- update(gy, type = "BC")
   all.equal(gy_bias(coef(gy)), gy_bc$bias, check.attributes = FALSE)

 }
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab