enrich.betareg {enrichwith} | R Documentation |
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 class 'betareg'
enrich(object, with = "all", ...)
Arguments
object |
an object of class |
with |
a character vector of options for the enrichment of |
... |
extra arguments to be passed to the
|
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; seeget_score_function.betareg
-
information
: the expected information as a function of the model parameters; seeget_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; seeget_bias_function.betareg
-
simulate
: asimulate
function forbetareg
objects that can simulate variates from the model at user-supplied parameter values for the regression parameters (default is the maximum likelihood estimates); seeget_simulate_function.betareg
Value
The object object
of class betareg
with extra components. get_enrichment_options.betareg()
returns the components and their descriptions.
Examples
## 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)
}
## End(Not run)