remove_StParm {Certara.RDarwin} | R Documentation |
Remove structural parameter from PML models
Description
Remove structural parameter from PML models
Usage
remove_StParm(PMLParametersSets, StParmName, PMLStructures = NULL)
Arguments
PMLParametersSets |
A list of PML parameters sets ( |
StParmName |
character specifying the name for the structural parameter to be removed. |
PMLStructures |
Character or character vector specifying names of PML
structures from which the structural parameter will be removed. For the
naming convention of PMLStructures, see Details section of
|
Details
Please make sure that structural parameter to be removed is not
essential for the model. Usually the user does not need to remove
any structural parameter. The only case is related to structural parameters
in Dosepoint()
.
Value
An updated list of PML models (PMLModels
class instance) matching
the specified options.
See Also
Functions used for StParm specification:
StParm()
,
add_StParm()
,
create_ModelPD()
,
create_ModelPK()
,
modify_StParm()
,
modify_StParmCustom()
Examples
PMLParametersSets <- get_PMLParametersSets(CompartmentsNumber = c(1, 2))
PMLParametersSetsDuration <-
add_StParm(PMLParametersSets,
StParmName = "Duration",
State = "Searched",
DosepointArgName = "duration")
PMLParametersSetsDuration1CptOnly <-
remove_StParm(PMLParametersSetsDuration,
StParmName = "Duration",
PMLStructures = "PK2IVC")