Create EAF-based polygon plots
plot_eaf_data(
df,
maximization = F,
scale.xlog = F,
scale.ylog = F,
scale.reverse = F,
p = NULL,
x_title = NULL,
xmin = NULL,
xmax = NULL,
ymin = NULL,
ymax = NULL,
y_title = NULL,
plot_title = NULL,
subplot_attr = NULL,
show.colorbar = F,
subplot_shareX = F,
dt_overlay = NULL,
...
)
An EAF plot
The dataframe containing the data to plot. This should come from `generate_data.EAF`
Whether the data comes from maximization or minimization
Logarithmic scaling of x-axis
Logarithmic scaling of y-axis
Decreasing or increasing x-axis
A previously existing plot on which to add traces. If NULL, a new canvas is created
Title of x-axis. Defaults to x_attr
Minimum value for the x-axis
Maximum value for the x-axis
Minimum value for the y-axis
Maximum value for the y-axis
Title of x-axis. Defaults to x_attr
Title of x-axis. Defaults to no title
Which attribute of the dataframe to use for creating subplots
Whether or not to include a colorbar
Whether or not to share X-axis when using subplots
Dataframe containing additional data (e.g. quantiles) to plot on top of the EAF. This should have a column labeled 'runtime'. The other columsn will all be plotted as function values.
Additional parameters for the add_trace function
if (FALSE) {
plot_eaf_data(generate_data.EAF(subset(dsl, ID==get_id(dsl)[[1]])), maximization=T)
}
Run the code above in your browser using DataLab