vcov.deltamethod {betaDelta} | R Documentation |
Sampling Covariance Matrix
Description
Sampling Covariance Matrix
Usage
## S3 method for class 'deltamethod'
vcov(object, ...)
Arguments
object |
Object of class |
... |
additional arguments. |
Value
Returns a matrix of the variance-covariance matrix.
Author(s)
Ivan Jacob Agaloos Pesigan
Examples
object <- glm(
formula = vs ~ wt + disp,
family = "binomial",
data = mtcars
)
def <- list("exp(wt)", "exp(disp)")
out <- DeltaGeneric(
object = object,
def = def,
alpha = 0.05
)
vcov(out)
[Package betaDelta version 1.0.5 Index]