| generate_data.CDP | R Documentation | 
This function generates a dataframe that can be used to generate the 'cumulative_difference_plot'.
generate_data.CDP(
  dsList,
  runtime_or_target_value,
  isFixedBudget,
  alpha = 0.05,
  EPSILON = 1e-80,
  nOfBootstrapSamples = 1000
)
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.  | 
A dataframe with the data to generate the cumulative difference plot.
dsl_sub <- subset(dsl, funcId == 1)
generate_data.CDP(dsl_sub, 15, TRUE, nOfBootstrapSamples = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.