View source: R/ablation_plot.R
ablation_plot | R Documentation |
Create plot from an ablation log
ablation_plot(
ablog,
type = c("mean", "boxplot", "rank"),
n = 0L,
ylab = "Mean configuration cost",
ylim = NULL,
rotate_labs = TRUE,
filename = NULL
)
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 |
( |
ggplot2::ggplot()
boxplot object
Manuel López-Ibáñez
irace::ablation()
, irace::plotAblation()
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.