Skip to contents

The covariance matrix of an epidist_multivariate object

Usage

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

Arguments

object

An epidist_multivariate object.

...

Not used.

Value

The covariance matrix.

Examples

vcov(new_epidist_multivariate(
  value = c(mean = 7.5, sd = 3.6),
  vcov = matrix(c(0.09, 0.02, 0.02, 0.04), nrow = 2),
  params = c("mean", "sd")
))
#>      [,1] [,2]
#> [1,] 0.09 0.02
#> [2,] 0.02 0.04