List Observations in the current PML set
list_Observations.Rd
This function lists the names of Observations in a given PMLModels
class
instance.
Arguments
- PMLParametersSets
A list of PML parameters sets (
PMLModels
class instance).- IncludeCustom
Logical. Should the names of responses (
observe
,multi
,ordinal
,count
,event
andLL
) from the PML code of custom spaces be included or not. Default isTRUE
.- ObservationsOnly
Logical. If
TRUE
(default), only the names ofobserve
responses 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"