simmodel | R Documentation |
Executes an NLME simulation
simmodel(
model,
simParams,
params,
hostPlatform = NULL,
runInBackground = FALSE,
...
)
model |
PK/PD model class object. |
simParams |
Simulation parameters. See |
params |
Engine parameters. See |
hostPlatform |
Host definition for model execution. See |
runInBackground |
Set to |
... |
Additional class initializer arguments for |
returns job properties if runInBackground is TRUE
;
if runInBackground is FALSE
and the function is called in interactive mode,
the resulted simulated tables wil be loaded and presented as a list;
if runInBackground is FALSE
and the function is called in non-interactive mode,
the list returned will have just the full paths of the tables generated.
SimTableObs <- tableParams(
name = "SimTableObs.csv",
timesList = "0,1,2,4,4.9,55.1,56,57,59,60",
variablesList = "C, CObs",
timeAfterDose = FALSE,
forSimulation = TRUE
)
simParams <- NlmeSimulationParams(
numReplicates = 2,
simulationTables = SimTableObs
)
# Define the model
model <- pkmodel(
numComp = 2,
absorption = "Extravascular",
ID = "Subject",
Time = "Act_Time",
CObs = "Conc",
Aa = "Amount",
data = pkData,
modelName = "PkModel"
)
results <- simmodel(model, simParams)
# with seed given additionally:
results <- simmodel(model, simParams, seed = 3527)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.