plotAblation | R Documentation |
Create plot from an ablation log
plotAblation(
ablog,
pdf_file = NULL,
width = 20,
height = 7,
type = c("mean", "boxplot", "rank"),
n = 0L,
mar = NULL,
ylab = "Mean configuration cost",
ylim = NULL,
rename_labels = NULL,
...
)
ablog |
( |
pdf_file |
Output filename. |
width |
Width provided to create the PDF file. |
height |
Height provided to create the PDF file. |
type |
Type of plot. Supported values are |
n |
|
mar |
Vector with the margins for the ablation plot. |
ylab |
Label of y-axis. |
ylim |
Numeric vector of length 2 giving the y-axis range. |
rename_labels |
|
... |
Further graphical parameters may also be supplied as
arguments. See |
Leslie Pérez Cáceres and Manuel López-Ibáñez
ablation()
ablation_cmdline()
logfile <- file.path(system.file(package="irace"), "exdata", "log-ablation.Rdata")
plotAblation(ablog = logfile)
plotAblation(ablog = logfile, type = "mean")
plotAblation(ablog = logfile, type = c("rank","boxplot"), rename_labels = c(
"localsearch"="ls", algorithm="algo", source="default"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.