get_instanceID_seed_pairs {irace} | R Documentation |
Returns the pairs of instance IDs and seeds used as instances in the race (and optionally the actual instances).
Description
Returns the pairs of instance IDs and seeds used as instances in the race (and optionally the actual instances).
Usage
get_instanceID_seed_pairs(iraceResults, index, instances = FALSE)
Arguments
iraceResults |
|
index |
( |
instances |
( |
Value
data.table()
With default arguments, a data.table
containing two columns
"instanceID"
and "seed"
. With instances=TRUE
and if the instances
are of atomic type (see is.atomic()
) type, another column instance
is
added that contains the actual instance.
Author(s)
Manuel López-Ibáñez
Examples
log_file <- system.file("exdata/irace-acotsp.Rdata", package="irace", mustWork=TRUE)
head(get_instanceID_seed_pairs(log_file))
# Add the instance names
get_instanceID_seed_pairs(log_file, index=1:10, instances=TRUE)