Reads multiple benchmark_results.tsv files and combines them into a single data.frame for cross-method comparison.

collect_benchmark_results(paths)

Arguments

paths

character vector of file paths to benchmark_results.tsv files

Value

data.frame with all benchmark results combined

Examples

if (FALSE) { # \dontrun{
files <- list.files("results", pattern = "benchmark_results.tsv",
                    recursive = TRUE, full.names = TRUE)
combined <- collect_benchmark_results(files)
} # }