Learn R Programming

metan (version 1.19.0)

get_covmat: Generate a covariance matrix

Description

[Stable]

Given the variances and desired correlations, generate a covariance matrix

Usage

get_covmat(cormat, var)

Value

A (co)variance matrix

Arguments

cormat

A symmetric matrix with desired correlations.

var

A numeric vector with variances. It must have length equal to the number of elements in the diagonal of cormat.

Author

Tiago Olivoto tiagoolivoto@gmail.com

Examples

Run this code
# \donttest{
cormat <-
matrix(c(1,  0.9, -0.4,
         0.9,  1,  0.6,
        -0.4, 0.6, 1),
      nrow = 3,
      ncol = 3)
get_covmat(cormat, var =  c(16, 25, 9))
# }

Run the code above in your browser using DataLab