Learn R Programming

iraceplot (version 2.1.0)

configurations_display: The configurations by iteration and instance

Description

This is a simplified version of the visualization you can obtain with acviz. This function is currently VERY SLOW.

Usage

configurations_display(
  irace_results,
  rpd = TRUE,
  filename = NULL,
  interactive = base::interactive()
)

Value

ggplot2::ggplot() object

Arguments

irace_results

The data generated when loading the .Rdata file created by irace (or the filename of that file).

rpd

(logical(1)) TRUE to plot performance as the relative percentage deviation to best results per instance, FALSE to plot raw performance.

filename

(character(1)) File name to save the plot, for example "~/path/example/filename.png".

interactive

(logical(1)) TRUE if the report may use interactive features (using plotly::ggplotly(), plotly::plot_ly() and DT::renderDataTable()) or FALSE if such features must be disabled. Defaults to the value returned by interactive(),

Examples

Run this code
# \donttest{
iraceResults <- read_logfile(system.file(package="iraceplot", "exdata",
                                         "guide-example.Rdata", mustWork = TRUE))
configurations_display(iraceResults)
# }

Run the code above in your browser using DataLab