View source: R/boxplot_training.R
boxplot_training | R Documentation |
Creates a box plot that displays the performance of a set of configurations on the training instances. Performance data is obtained from the evaluations performed by irace during the execution process. This implies that the number of evaluations can differ between configurations.
boxplot_training(
irace_results,
iteration = NULL,
id_configurations = NULL,
...
)
irace_results |
The data generated when loading the |
iteration |
Numeric, iteration number that should be included in the plot (example: The performance data is obtained from the evaluations performed by irace during the execution process. This implies that the number of evaluations can differ between configurations due to the elimination process applied by irace. This plot, consequently, does not provide a complete compaarison of two configurations, for a fair comparison use the test data plot. |
id_configurations |
Numeric vector, configurations ids whose performance should be included in the plot.
If no ids are provided, the configurations ids are set as the elite configuration ids
of the selected iteration (last iteration by default)
(example: |
... |
Other arguments passed to |
ggplot2::ggplot()
boxplot object
boxplot_test()
boxplot_performance()
iraceResults <- read_logfile(system.file(package="irace", "exdata",
"irace-acotsp.Rdata", mustWork = TRUE))
boxplot_training(iraceResults)
boxplot_training(iraceResults, iteration = 5)
boxplot_training(iraceResults, id_configurations = c(23,28,29))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.