linearmodel {Certara.RsNLME} | R Documentation |
Create linear model
Description
Use to create a constant, linear, or quadratic PD model
Usage
linearmodel(
isPopulation = TRUE,
type = "Constant",
data = NULL,
columnMap = TRUE,
modelName = "",
workingDir = "",
...
)
Arguments
isPopulation |
Is this a population model |
type |
Model type. Options are |
data |
Input dataset |
columnMap |
If |
modelName |
Model name for subdirectory created for model output in current working directory. |
workingDir |
Working directory to run the model. Current working directory will be used
if |
... |
Arguments passed on to
|
Value
NlmePmlModel
object
Column mapping
Note that quoted and unquoted column names are supported. Please see colMapping
.
Examples
model <- linearmodel(type = "Linear", data = pkpdData, ID = "ID", C = "CObs", EObs = "EObs")
# View PML Code
print(model)