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: 7 × 6
#>   iteration configurations instances experiments elites best_id
#>       <dbl>          <int>     <int>       <int>  <int>   <dbl>
#> 1         1             33         5         165      4      14
#> 2         2             32         7         160      5      57
#> 3         3             32         8         155      5      78
#> 4         4             33        10         195      5      78
#> 5         5             34        12         197      5     138
#> 6         6             14        14          73      5     138
#> 7         7              8        16          36      5     155