remove_Observation {Certara.RDarwin} | R Documentation |
Remove Observation from PML models
Description
Remove Observation from PML models
Usage
remove_Observation(PMLParametersSets, ObservationName, PMLStructures = NULL)
Arguments
PMLParametersSets |
A list of PML parameters sets ( |
ObservationName |
A character string giving the name of the Observation. |
PMLStructures |
Character or character vector specifying names of PML
structures from which the observation will be removed. For the naming
convention of PMLStructures, see Details section of
|
Details
The current functionality does not support modifying custom observations 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 Observation specification:
Observation()
,
ObservationCustom()
,
Sigmas()
,
create_ModelPD()
,
create_ModelPK()
,
modify_Observation()
Examples
PMLParametersSets <-
create_ModelPK(
CompartmentsNumber = c(2, 3),
Parameterization = "Micro",
Absorption = c("First-Order", "Gamma"),
ByVector = TRUE,
ClosedForm = TRUE,
EliminationCpt = TRUE)
remove_Observation(PMLParametersSets,
ObservationName = "A0Obs",
PMLStructures = "PK3GME")