pkmodel | R Documentation |
Use to create a PK model
pkmodel(
isPopulation = TRUE,
parameterization = "Clearance",
absorption = "Intravenous",
numCompartments = 1,
isClosedForm = TRUE,
isTlag = FALSE,
hasEliminationComp = FALSE,
isFractionExcreted = FALSE,
isSaturating = FALSE,
infusionAllowed = FALSE,
isDuration = FALSE,
isStdevFrozen = 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 |
isStdevFrozen |
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 <- pkmodel(
parameterization = "Clearance",
numCompartments = 2,
data = pkData,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc"
)
# 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.