First attempt to read variance component estimation (VCE) results from a csv-file and storing them in tibble.

read_vce(ps_input_file, pb_log = FALSE, plogger = NULL)

Arguments

ps_input_file

name of the input file in csv-format

pb_log

flag indicating whether logging should be done

plogger

logger object from outside

Examples

# specify input file 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.