Learn R Programming

iraceplot (version 2.1.0)

summarise_by_configuration: Summarise by configuration

Description

Summarise by configuration

Usage

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

Value

tibble

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").

Examples

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

Run the code above in your browser using DataLab