bootstrap_RT {IOHanalyzer} | R Documentation |
Bootstrapping for running time samples
Description
Bootstrapping for running time samples
Usage
bootstrap_RT(x, max_eval, bootstrap.size)
Arguments
x |
A numeric vector. A sample of the running time. |
max_eval |
A numeric vector, containing the maximal running time in each run. It should have the same size as x |
bootstrap.size |
integer, the size of the bootstrapped sample |
Value
A numeric vector of the bootstrapped running time sample
Examples
ds <- dsl[[1]]
x <- get_RT_sample(ds, ftarget = 16, output = 'long')
max_eval <- get_maxRT(dsl, output = 'long')
bootstrap_RT(x$RT, max_eval$maxRT, bootstrap.size = 30)
[Package IOHanalyzer version 0.1.8.10 Index]