Skip to contents

getPKParameterGroupsInOutput

Usage

getPKParameterGroupsInOutput(output)

Arguments

output

Output object

Value

Names of pkParameter groups in `output`

Examples

myOutput <- Output$new(
  path = "a",
  pkParameters = c("C_max", "AUC_tEnd")
)
getPKParametersInOutput(myOutput)
#>      C_max   AUC_tEnd 
#>    "C_max" "AUC_tEnd" 

# If a group is defined
myGroupOutput <- Output$new(
  path = "a",
  pkParameters = c(
    C_max = PkParameterInfo$new("C_max", group = 1),
    AUC_tEnd = PkParameterInfo$new("AUC_tEnd", group = 2)
  )
)
getPKParametersInOutput(myGroupOutput)
#>      C_max   AUC_tEnd 
#>    "C_max" "AUC_tEnd"