Learn R Programming

Certara.RDarwin (version 1.1.1)

list_Observations: List Observations in the current PML set

Description

This function lists the names of Observations in a given PMLModels class instance.

Usage

list_Observations(
  PMLParametersSets,
  IncludeCustom = TRUE,
  ObservationsOnly = TRUE
)

Value

A character vector containing the names of Observations

Arguments

PMLParametersSets

A list of PML parameters sets (PMLModels class instance).

IncludeCustom

Logical. Should the names of responses (observe, multi, ordinal, count, event and LL) from the PML code of custom spaces be included or not. Default is TRUE.

ObservationsOnly

Logical. If TRUE (default), only the names of observe responses are included in the PML code generated for custom spaces. Non-observed response names (such as multi, ordinal, count, event, and LL) are not included. Ignored if IncludeCustom == FALSE.

See Also

Observation() modify_Observation() remove_Observation()

Examples

Run this code
PMLParametersSets <-
  create_ModelPK(
    Absorption = c("First-Order", "Gamma"),
    EliminationCpt = c(TRUE, FALSE))
list_Observations(PMLParametersSets)

Run the code above in your browser using DataLab