• get_omega(): Return omega values as a labeled symmetric matrix

  • get_sigma(): Return sigma values as a labeled symmetric matrix

  • get_theta(): Return theta values as a named vector

get_omega(.summary)

get_sigma(.summary)

get_theta(.summary)

Arguments

.summary

a bbi_nonmem_summary or bbi_summary_list object.

Examples


if (FALSE) {
sum <- mod %>% model_summary()


sum %>% get_omega()
#>              OMEGA_1     OMEGA_2     OMEGA_3      OMEGA_4
#> OMEGA_1  0.010410500 0.000319542 0.001977200 -0.000189864
#> OMEGA_2  0.000319542 0.008278020 0.000872168  0.001005720
#> OMEGA_3  0.001977200 0.000872168 0.013139700  0.004040370
#> OMEGA_4 -0.000189864 0.001005720 0.004040370  0.010987300
}