View source: R/plot_experiments_matrix.R
plot_experiments_matrix | R Documentation |
Creates a heatmap plot that shows all performance data seen by irace.
Configurations are shown in the x-axis in the order in which they are
created in the configuration process. Instances are shown in the y-axis in
the order in which they where seen during the configuration run. This plot
gives a general idea of the configuration process progression, the number of
evaluations of each configuration show how long they survived in the
iterated racing procedure. Rejected configurations are shown with a red X
.
plot_experiments_matrix(
experiments,
filename = NULL,
metric = c("raw", "rpd", "rank"),
show_conf_ids = FALSE,
interactive = base::interactive()
)
experiments |
|
filename |
( |
metric |
Cost metric shown in the plot: |
show_conf_ids |
( |
interactive |
( |
ggplot2::ggplot()
object
Alternatively, experiments
could be the data generated when loading the
.Rdata
file created by irace
(or the filename of that file), from which
the experiments matrix will be loaded.
iraceResults <- read_logfile(system.file(package="irace", "exdata",
"irace-acotsp.Rdata", mustWork = TRUE))
plot_experiments_matrix(iraceResults)
plot_experiments_matrix(read_logfile(system.file(package="iraceplot", "exdata",
"dummy-reject.Rdata", mustWork = TRUE)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.