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      1      31
#> 2         2             30         5         146      4      31
#> 3         3             31         7         147      2      68
#> 4         4             31         9         165      5     111
#> 5         5             42        11         249      5     139
#> 6         6             15        13          92      5     111
#> 7         7              7        14          33      5     158
#> 8         8              3         1           3      3     158