DeltaGeneric {betaDelta} | R Documentation |
Delta Method (Generic Object Input)
Description
Calculates delta method sampling variance-covariance matrix for a function of parameters using a numerical Jacobian.
Usage
DeltaGeneric(
object,
def,
theta = 0,
alpha = c(0.05, 0.01, 0.001),
z = TRUE,
df = NULL
)
Arguments
object |
R object.
Fitted model object with |
def |
List of character strings. A list of defined functions of parameters. The string should be a valid R expression when parsed and should result a single value when evaluated. |
theta |
Numeric vector. Parameter values when the null hypothesis is true. |
alpha |
Numeric vector. Significance level/s. |
z |
Logical.
If |
df |
Numeric.
Degrees of freedom if |
Value
Returns an object
of class deltamethod
which is a list with the following elements:
- call
Function call.
- args
Function arguments.
- coef
Estimates.
- vcov
Sampling variance-covariance matrix.
- jacobian
Jacobian matrix.
- fun
Function used ("DeltaGeneric").
Author(s)
Ivan Jacob Agaloos Pesigan
See Also
Other Delta Method Functions:
Delta()
Examples
object <- glm(
formula = vs ~ wt + disp,
family = "binomial",
data = mtcars
)
def <- list("exp(wt)", "exp(disp)")
DeltaGeneric(
object = object,
def = def,
alpha = 0.05
)