Skip to contents

getPKParametersInOutput

Usage

getPKParametersInOutput(output)

Arguments

output

Output object

Value

Names of pkParameters in `output`

Examples

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