Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
benchmark: add lines to scatter plots
Adds lines between the points of the same category in scatter.R plots.
  • Loading branch information
lundibundi committed Aug 27, 2018
commit c65b3022dcedb8dd6d8405652ec27106249b2de6
1 change: 1 addition & 0 deletions benchmark/scatter.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ if (!is.null(plot.filename)) {
width=.1, na.rm=TRUE
);
p = p + geom_point();
p = p + geom_line();
p = p + ylab("rate of operations (higher is better)");
p = p + ggtitle(dat[1, 1]);
ggsave(plot.filename, p);
Expand Down