View source: R/pklinearmodel.R
pklinearmodel | R Documentation |
Use to create a PK/PD model with PD described by either constant, linear, or quadratic model
pklinearmodel(
isPopulation = TRUE,
parameterization = "Clearance",
absorption = "Intravenous",
numCompartments = 1,
isClosedForm = TRUE,
isTlag = FALSE,
hasEliminationComp = FALSE,
isFractionExcreted = FALSE,
isSaturating = FALSE,
infusionAllowed = FALSE,
isDuration = FALSE,
isSequential = FALSE,
isPkFrozen = FALSE,
hasEffectsCompartment = FALSE,
linearType = "Constant",
isLinearFrozen = FALSE,
data = NULL,
columnMap = TRUE,
modelName = "",
workingDir = "",
...
)
isPopulation |
Is this a population model |
parameterization |
Type of parameterization. Options are |
absorption |
Type of absorption. Options are |
numCompartments |
Value of either |
isClosedForm |
Set to |
isTlag |
Set to |
hasEliminationComp |
Set to |
isFractionExcreted |
Set to |
isSaturating |
Set to |
infusionAllowed |
Set to |
isDuration |
Set to |
isSequential |
Set to |
isPkFrozen |
Set to |
hasEffectsCompartment |
Set to |
linearType |
Type of PD model; Options are |
isLinearFrozen |
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
|
NlmePmlModel
object
Note that quoted and unquoted column names are supported. Please see colMapping
.
model <- pklinearmodel(
parameterization = "Clearance",
linearType = "Constant",
data = pkpdData,
ID = "ID",
Time = "Time",
A1 = "Dose",
CObs = "CObs",
EObs = "EObs"
)
# View the model as well as its associated column mappings
print(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.