Skip to contents

Returns named character vector of theta values by parsing PML fixed effect statements

Usage

getThetas(model)

Arguments

model

PK/PD model

Value

Character vector of theta names defined in model

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"
#> 
# }