vcov.deltamethod: Sampling Covariance Matrix

View source: R/deltaMethod-methods.R

vcov.deltamethodR Documentation

Sampling Covariance Matrix

Description

Sampling Covariance Matrix

Usage

## S3 method for class 'deltamethod'
vcov(object, ...)

Arguments

object

Object of class deltamethod.

...

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)


betaDelta documentation built on May 29, 2024, 1:58 a.m.