tableParams | R Documentation |
Wrapper around NlmeTableDef/NlmeSimTableDef-classes initializers.
tableParams(
name = "",
timesList = numeric(0),
covrSet = "",
whenDose = "",
whenObs = "",
variablesList = "",
keepSource = FALSE,
timeAfterDose = FALSE,
IRES = FALSE,
Weight = FALSE,
IWRES = FALSE,
mode = "all",
forSimulation = FALSE
)
name |
Name of the generated simulation file. |
timesList |
Numeric; Time values for simulation.
Applicable for time-based models only. Ignored when |
covrSet |
Character; Vector of covariate names. Simulation point is added
when the covariate value is set. See |
whenDose |
Character; Vector of dosing compartment names. Simulation point is added when the dose value is set. |
whenObs |
Character; String of observed variables names. Simulation point is added when the observation value is set. |
variablesList |
Character; List of variables from the model for simulation. |
keepSource |
Logical; Set to |
timeAfterDose |
Set to |
IRES |
Logical; Set to |
Weight |
Logical; Set to |
IWRES |
Logical; Set to |
mode |
Character; The mode of output. Options are Option |
forSimulation |
logical. Defining whether the table is for simulation
purposes or for postprocessing after fit. Default is |
NlmeTableDef
object if forSimulation
is FALSE
,
NlmeSimTableDef
object otherwise.
Table1 <- tableParams(
name = "Table1.csv",
timesList = seq(0, 24, 2),
whenObs = c("CObs"),
variablesList = "C",
IRES = TRUE,
IWRES = TRUE,
Weight = TRUE)
SimTable1 <- tableParams(
name = "SimTable1.csv",
variablesList = "CL, V",
keepSource = TRUE,
forSimulation = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.