Adds and returns a User-Defined PK-Parameter to the managed list of PK-Parameters
Source:R/utilities-pk-parameter.R
addUserDefinedPKParameter.Rd
Adds and returns a User-Defined PK-Parameter to the managed list of PK-Parameters
Usage
addUserDefinedPKParameter(
name,
standardPKParameter,
displayName = NULL,
displayUnit = NULL
)
Examples
# Adds a user defined parameter named MyAuc that will calculate the value of AUC
# between t=50 min and t=80min
myAUC <- addUserDefinedPKParameter(
name = "MyAUC",
standardPKParameter = StandardPKParameter$AUC_tEnd
)
myAUC$startTime <- 50
myAUC$endTime <- 80
# Adds a user defined parameter named MyCMax that will calculate the value of Cmax
# between the 4th and 5th application
myCMax <- addUserDefinedPKParameter(
name = "MyCMax",
standardPKParameter = StandardPKParameter$C_max
)
myCMax$startApplicationIndex <- 4
myCMax$endApplicationIndex <- 5