performance_profile {nestedpp}R Documentation

Performance profile function

Description

Function that returns a ggplot object with the corresponding performance profile

Usage

performance_profile(
  data,
  minimize = TRUE,
  logbase = 1,
  legend_title = "",
  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 performance profiles

legend_title

title for the legend

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 performance profile

Examples

example_data = generate_random_example(seed = 1234)
performance_profile(example_data)


[Package nestedpp version 0.2.0 Index]