Learn R Programming

IOHanalyzer (version 0.1.8.10)

bootstrap_RT: Bootstrapping for running time samples

Description

Bootstrapping for running time samples

Usage

bootstrap_RT(x, max_eval, bootstrap.size)

Value

A numeric vector of the bootstrapped running time sample

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

Examples

Run this code
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)

Run the code above in your browser using DataLab