bootstrap | R Documentation |
Method to execute an NLME Bootstrap
bootstrap(
model,
hostPlatform = NULL,
params,
bootParams,
runInBackground = FALSE,
...
)
model |
PK/PD model class object. |
hostPlatform |
Host definition for model execution. See |
params |
Engine parameters. See |
bootParams |
Bootstrap parameters. See |
runInBackground |
Set to |
... |
Additional class initializer arguments for |
if runInBackground = FALSE
, a list is returned with bootstrap results, i.e.
"BootOverall", "BootTheta", "BootOmega", "BootOmegaStderr", "BootVarCoVar" comma separated files.
Otherwise the BootNlmeJob
class object is returned.
hostParams, engineParams, BootstrapParams
input_data <- pkData
model <-
pkmodel(
numCompartments = 2,
data = input_data,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc"
)
# multicore
multicoreHost <- hostParams(
parallelMethod = "Multicore",
hostName = "local_multicore",
numCores = 4
)
bootstrapdf <- bootstrap(model,
hostPlatform = multicoreHost,
params = engineParams(model),
numReplicates = 5,
randomNumSeed = 1234,
runInBackground = FALSE
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.