Learn R Programming

IOHanalyzer (version 0.1.8.10)

generate_data.CDP: Generate data for the cumulative difference plot.

Description

This function generates a dataframe that can be used to generate the `cumulative_difference_plot`.

Usage

generate_data.CDP(
  dsList,
  runtime_or_target_value,
  isFixedBudget,
  alpha = 0.05,
  EPSILON = 1e-80,
  nOfBootstrapSamples = 1000
)

Value

A dataframe with the data to generate the cumulative difference plot.

Arguments

dsList

The DataSetList object. Note that the `cumulative_difference_plot` can only compare two algorithms in a single problem of dimension one.

runtime_or_target_value

The target runtime or the target value

isFixedBudget

Should be TRUE when target runtime is used. False otherwise.

alpha

1 minus the confidence level of the confidence band.

EPSILON

If abs(x-y) < EPSILON, then we assume that x = y.

nOfBootstrapSamples

The number of bootstrap samples used in the estimation.

Examples

Run this code

dsl_sub <- subset(dsl, funcId == 1)
generate_data.CDP(dsl_sub, 15, TRUE, nOfBootstrapSamples = 10)

Run the code above in your browser using DataLab