Storing the variance and covariances in the tibble read from the input file in a list of matrices.

build_matrix(ps_input_tibble)

Arguments

ps_input_tibble

tibble containing all variance-covariance components

Details

--- title: Constructing multivariate estimates from analyses by parts in a matrix date: "`r Sys.Date()`" ---

Examples

sInputFile <- system.file("extdata","VCE_results.csv", package = "rvcetools") tbl_vce <- read_vce(ps_input_file = sInputFile)
#> Rows: 6414 Columns: 9
#> ── Column specification ──────────────────────────────────────────────────────── #> Delimiter: ";" #> chr (9): type, traits, random_effect, estimate, STD_ERR_estimate, model_name...
#> #> Use `spec()` to retrieve the full column specification for this data. #> Specify the column types or set `show_col_types = FALSE` to quiet this message.
l_mat <- build_matrix(ps_input_tibble = tbl_vce)