Shiny GUI to examine the model and evaluate estimates for fixed effects

estimatesUI(model, host = NULL)

Arguments

model

Model object

host

Optional host parameter of class hostParams. If NULL local host will be used.

Examples

if (FALSE) {
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)
}