Skip to content

Commit

Permalink
benchmark: improve compare.R output
Browse files Browse the repository at this point in the history
PR-URL: #38118
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
mscdex authored and targos committed May 1, 2021
1 parent c7c8722 commit c00c31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/compare.R
Expand Up @@ -23,7 +23,7 @@ dat = read.csv(
dat = data.frame(dat);

dat$nameTwoLines = paste0(dat$filename, '\n', dat$configuration);
dat$name = paste0(dat$filename, dat$configuration);
dat$name = paste0(dat$filename, ' ', dat$configuration);

# Create a box plot
if (!is.null(plot.filename)) {
Expand Down

0 comments on commit c00c31c

Please sign in to comment.