Learn R Programming

Certara.RsNLME (version 3.1.0.1)

BootstrapParams-class: Represents parameters for a bootstrap run

Description

Class initializer for BootstrapParams that represents parameters for a bootstrap run.

Arguments

Slots

numReplicates

Number of bootstrap replicates to run

initialEstimates

Get model final estimates to run bootstrap (T|F)

numRetries

Number of times to retry a failed replicated

randomNumSeed

Seed for random number generator

confidenceLevel

Confidence level

stratifyColumns

What columns to stratify on(comma separated)

Examples

Run this code
# same object as BootstrapParams()
boot <- BootstrapParams(
  numReplicates = 100,
  initialEstimates = FALSE,
  numRetries = 2,
  randomNumSeed = 1234,
  confidenceLevel = 95
)

Run the code above in your browser using DataLab