nested_performance_profile {nestedpp}R Documentation

Nested performance profile function

Description

Function that returns a ggplot object with the corresponding nested performance profile

Usage

nested_performance_profile(
  data,
  minimize = TRUE,
  logbase = 1,
  legend_title = "",
  best_rule = "winner",
  xlab = expression(tau),
  ylab = expression(rho),
  xmax = 0,
  colors = c(),
  plot = TRUE,
  xgrid = c()
)

Arguments

data

data frame with the data

minimize

true if lower values mean best performance and false otherwise

logbase

base of the logarithm used to represent nested performance profiles

legend_title

title for the legend

best_rule

option to choose the best solver eliminated in each iteration ("winner", "mean", "gmean", "median" or custom function)

xlab

x axis label

ylab

y axis label

xmax

maximum value of xaxis

colors

vector with the colors of each configuration

plot

bool to display the plot or not

xgrid

vector for using it as grid in ratios

Value

ggplot object with the corresponding nested performance profile

Examples

example_data = generate_random_example(seed = 1234)
nested_performance_profile(example_data)


[Package nestedpp version 0.2.0 Index]