estimatesUI {Certara.RsNLME.ModelBuilder} | R Documentation |
Shiny GUI to examine the model and evaluate estimates for fixed effects.
Description
Shiny GUI to examine the model and evaluate estimates for fixed effects.
Usage
estimatesUI(model, host = NULL)
Arguments
model |
Model object. |
host |
Optional host parameter of class |
Value
A model object of class NlmePmlModel
Examples
if (interactive()) {
library(Certara.RsNLME)
host <- hostParams(
parallelMethod = "None",
hostName = "local",
numCores = 1
)
model <- pkmodel(
parameterization = "Clearance",
absorption = "Intravenous",
numCompartments = 2,
data = pkData,
ID = "Subject",
A1 = "Amount",
CObs = "Conc",
Time = "Act_Time",
modelName = "pk_model"
)
model <- estimatesUI(model, host)
}
[Package Certara.RsNLME.ModelBuilder version 3.0.1 Index]