remove_Covariate {Certara.RDarwin} | R Documentation |
Remove Covariate from PML models
Description
Remove Covariate from PML models
Usage
remove_Covariate(
PMLParametersSets,
Name,
StParmNames = NULL,
PMLStructures = NULL
)
Arguments
PMLParametersSets |
A list of PML parameters sets ( |
Name |
Character specifying the name of the covariate to be removed. |
StParmNames |
Character or character vector specifying names of
structural parameters from which the covariate will be removed. Can be set
to |
PMLStructures |
Character or character vector specifying names of PML
structures from which the covariate will be removed. For the naming
convention of PMLStructures, see Details section of see details section of
|
Details
The current functionality does not support removing custom covariates that are defined within the PML code of custom model spaces.
Value
An updated list of PML models (PMLModels
class instance) matching
the specified options.
See Also
Functions used for Covariate specification:
Covariate()
,
add_Covariate()
,
create_ModelPD()
,
create_ModelPK()
Examples
PMLParametersSets <- get_PMLParametersSets()
PMLParametersSetsWT <-
add_Covariate(PMLParametersSets,
Name = "WT",
Type = "Continuous",
State = "Present",
Direction = "Forward",
Center = 70)
PMLParametersSetsVonly <-
remove_Covariate(PMLParametersSets = PMLParametersSetsWT,
Name = "WT",
StParmNames = "Cl")