List Observations in the current PML set
list_Observations.RdThis function lists the names of Observations in a given PMLModels class
instance.
Arguments
- PMLParametersSets
A list of PML parameters sets (
PMLModelsclass instance).- IncludeCustom
Logical. Should the names of responses (
observe,multi,ordinal,count,eventandLL) from the PML code of custom spaces be included or not. Default isTRUE.- ObservationsOnly
Logical. If
TRUE(default), only the names ofobserveresponses are included in the PML code generated for custom spaces. Non-observed response names (such asmulti,ordinal,count,event, andLL) are not included. Ignored ifIncludeCustom == FALSE.
Examples
PMLParametersSets <-
create_ModelPK(
Absorption = c("First-Order", "Gamma"),
EliminationCpt = c(TRUE, FALSE))
list_Observations(PMLParametersSets)
#> [1] "CObs" "A0Obs"