R/configurations_display.R
configurations_display.Rd
This is a simplified version of the visualization you can obtain with
acviz
. This function is currently
VERY SLOW.
configurations_display(
irace_results,
rpd = TRUE,
filename = NULL,
interactive = base::interactive()
)
The data generated when loading the .Rdata
file created by irace
(or the filename of that file).
(logical(1)
) TRUE to plot performance as the relative
percentage deviation to best results per instance, FALSE to plot raw
performance.
(character(1)
) File name to save the plot, for example "~/path/example/filename.png"
.
(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()
,
ggplot2::ggplot()
object
# \donttest{
iraceResults <- read_logfile(system.file(package="iraceplot", "exdata",
"guide-example.Rdata", mustWork = TRUE))
configurations_display(iraceResults)
# }