summarise_by_configuration {iraceplot}R Documentation

Summarise by configuration

Description

Summarise by configuration

Usage

summarise_by_configuration(
  irace_results,
  elites_only = FALSE,
  instances = c("both", "train", "test")
)

Arguments

irace_results

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

elites_only

(logical(1)) If TRUE, only report the final elite configurations.

instances

(character(1)) Select data from the training instances ("train") or from the test instances if available ("test"). The default is from both ("both").

Value

tibble

Examples

irace_results <- read_logfile(system.file(package="irace", "exdata",
                                         "irace-acotsp.Rdata", mustWork = TRUE))
summarise_by_configuration(irace_results, instances = "train", elites_only = TRUE)

[Package iraceplot version 1.2 Index]