powered by
Plot the cumulative difference plot given a DataSetList.
Plot.cumulative_difference_plot( dsList, runtime_or_target_value, isFixedBudget, alpha = 0.05, EPSILON = 1e-80, nOfBootstrapSamples = 1000, dataAlreadyComputed = FALSE, precomputedData = NULL )
A cumulative difference plot.
A DataSetList (should consist of only one function and dimension and two algorithms).
The target runtime or the target value
Should be TRUE when target runtime is used. False otherwise.
1 minus the confidence level of the confidence band.
If abs(x-y) < EPSILON, then we assume that x = y.
The number of bootstrap samples used in the estimation.
If false, `generate_data.CDP` will be called to process the data.
only needed when dataAlreadyComputed=TRUE. The result of `generate_data.CDP`.
dsl dsl_sub <- subset(dsl, funcId == 1) target <- 15 Plot.cumulative_difference_plot(dsl_sub, target, FALSE)
Run the code above in your browser using DataLab