emaxmodel {Certara.RsNLME} | R Documentation |
Create an Emax or Imax model
Description
Use to create an Emax or Imax model
Usage
emaxmodel(
isPopulation = TRUE,
checkBaseline = FALSE,
checkFractional = FALSE,
checkInhibitory = FALSE,
checkSigmoid = FALSE,
data = NULL,
columnMap = TRUE,
modelName = "",
workingDir = "",
...
)
Arguments
isPopulation |
Is this a population model |
checkBaseline |
Set to |
checkFractional |
Set to |
checkInhibitory |
Set to |
checkSigmoid |
Set to |
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 <- emaxmodel(data = pkpdData, ID = "ID", C = "CObs", EObs = "EObs")
model <- emaxmodel(
checkBaseline = TRUE,
checkFractional = TRUE,
checkInhibitory = TRUE,
data = pkpdData,
ID = "ID",
C = "CObs",
EObs = "EObs"
)
# View PML Code
print(model)