copyModel | R Documentation |
Copies previously executed model into a new object and optionally accept all estimates returned from model execution. A new working directory is created and all files from base model are copied into it.
copyModel(model, acceptAllEffects = FALSE, modelName = "", workingDir = "")
model |
Model object to be copied |
acceptAllEffects |
Set to |
modelName |
New model name for subdirectory created for model output. Subdirectory is created in current working directory. |
workingDir |
Working directory to run the model. Current working directory will be used if workingDir not specified. |
Modified NlmePmlModel
object
# Create initial model
model <- pkmodel(
parameterization = "Clearance",
absorption = "Intravenous",
numCompartments = 2,
data = pkData,
ID = "Subject",
A1 = "Amount",
CObs = "Conc",
Time = "Act_Time",
modelName = "pk_model"
)
# Fit Model
job <- fitmodel(model)
# Copy model and accept all effects from the original model run
vpcModel <- copyModel(model, acceptAllEffects = TRUE, modelName = "vpc_model")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.