Summarise by iteration

summarise_by_iteration(irace_results)

Arguments

irace_results

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

Value

tibble

Examples

irace_result <- read_logfile(system.file(package="irace", "exdata",
                                         "irace-acotsp.Rdata", mustWork = TRUE))
summarise_by_iteration(irace_result)
#> # A tibble: 8 × 6
#>   iteration configurations instances experiments elites best_id
#>       <int>          <int>     <int>       <int>  <int>   <int>
#> 1         1             33         5         165      2      10
#> 2         2             31         6         151      2      45
#> 3         3             30         8         162      5      45
#> 4         4             33        10         210      5     108
#> 5         5             32        12         208      5     108
#> 6         6             12        14          54      5     108
#> 7         7              8        16          48      5     108
#> 8         8              2         1           2      2     108