Remove structural parameter from PML models
remove_StParm.Rd
Remove structural parameter from PML models
Arguments
- PMLParametersSets
A list of PML parameters sets (
PMLModels
class instance).- 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
get_PMLParametersSets()
.
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()
.
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")