ablation_plot {iraceplot} | R Documentation |
Create plot from an ablation log
Description
Create plot from an ablation log
Usage
ablation_plot(
ablog,
type = c("mean", "boxplot", "rank"),
n = 0L,
ylab = "Mean configuration cost",
ylim = NULL,
rotate_labs = TRUE,
filename = NULL
)
Arguments
ablog |
( |
type |
Type of plot. Supported values are |
n |
( |
ylab |
Label of y-axis. |
ylim |
Numeric vector of length 2 giving the y-axis range. |
rotate_labs |
( |
filename |
( |
Value
ggplot2::ggplot()
boxplot object
Author(s)
Manuel López-Ibáñez
See Also
irace::ablation()
, irace::plotAblation()
Examples
ablog <- read_ablogfile(system.file(package="irace", "exdata", "log-ablation.Rdata"))
ablation_plot(ablog)
ablation_plot(ablog, type="boxplot", rotate_labs = FALSE)
ablation_plot(ablog, type="mean,boxplot", rotate_labs = FALSE)
ablation_plot(ablog, type="rank,mean,boxplot", n = 4, rotate_labs = FALSE)
ablog <- system.file(package="iraceplot", "exdata", "log-ablation-autoMOPSODTLZ.Rdata")
ablation_plot(ablog, type="rank,mean,boxplot")