Return theta names and values
getThetas.Rd
Returns named character vector of theta values by parsing PML fixed effect statements
Examples
# \donttest{
model <- emaxmodel(
checkBaseline = TRUE,
checkFractional = TRUE,
checkInhibitory = TRUE,
data = pkpdData,
ID = "ID",
C = "CObs",
EObs = "EObs"
)
getThetas(model)
#> $tvIC50
#> [1] "1"
#>
#> $tvE0
#> [1] "1"
#>
#> $tvImax
#> [1] "1"
#>
# }