getPKParameterGroupsInOutput
See also
Other workflow helpers:
activateWorkflowTasks()
,
addStudyParameters()
,
addXParametersForDemographyPlot()
,
addXParametersForPKParametersPlot()
,
addYParametersForDemographyPlot()
,
addYParametersForPKParametersPlot()
,
checkTaskInputsExist()
,
createWorkflowFromExcelInput()
,
getMeanSensitivityAnalysisResultsFileNames()
,
getOutputPathsInSimulationSet()
,
getPKAnalysisResultsFileNames()
,
getPKParametersInOutput()
,
getPKParametersInSimulationSet()
,
getPopulationPKData()
,
getPopulationPKMetaData()
,
getPopulationSensitivityAnalysisResultsFileNames()
,
getSimulationDescriptor()
,
getSimulationParameterDisplayPaths()
,
getSimulationResultFileNames()
,
getTaskInputs()
,
getWorkflowParameterDisplayPaths()
,
getWorkflowReferencePopulationName()
,
getXParametersForDemographyPlot()
,
getXParametersForPKParametersPlot()
,
getYParametersForDemographyPlot()
,
getYParametersForPKParametersPlot()
,
inactivateWorkflowTasks()
,
setSimulationDescriptor()
,
setWorkflowParameterDisplayPaths()
,
setWorkflowParameterDisplayPathsFromFile()
,
setXParametersForDemographyPlot()
,
setXParametersForPKParametersPlot()
,
setYParametersForDemographyPlot()
,
setYParametersForPKParametersPlot()
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"