Skip to contents

Shiny application to update RsNLME model from Shiny GUI and directly edit PML statements using Ace editor. Syntax and semantic check is performed by TDL executable (if presented). The Shiny application also allows adding input options and column mappings from Shiny GUI.

Usage

modelTextualUI(baseModel, initpml, data, modelName = "PKPDmodel")

Arguments

baseModel

The model object from where the information is recovered.

initpml

Initial PML model file to be edited. Overrides baseModel@statements, if presented.

data

Input data frame. Overrides baseModel@inputData, if presented.

modelName

Name of the model; if missing, named as 'PKPDmodel'. Overrides baseModel@modelInfo@modelName, if presented.

Examples

if (FALSE) { # \dontrun{
model <- modelBuilderUI(data = Certara.RsNLME::pkData, modelName = "PK_Model")

model <- modelTextualUI(baseModel = model)
} # }