Check the configuration of the model contained in the config table
check_config_table.Rd
Check the configuration of the model contained in the config table
Examples
config_table_small <- dplyr::tibble(
type = c("d","d","n"),
dependent = c("JL", "TOTS", "B"),
independent = c("TOTS - CP - CO - J - A", "YF + B", "CP + J")
)
osem:::check_config_table(config_table_small)
#> # A tibble: 3 × 5
#> type index dependent independent order
#> <chr> <int> <chr> <chr> <int>
#> 1 n 3 B CP + J 1
#> 2 d 2 TOTS YF + B 2
#> 3 d 1 JL TOTS - CP - CO - J - A 3