From 7aac70607df723a1218577d5f0d7a4b6bd94d993 Mon Sep 17 00:00:00 2001 From: Denys Otrishko Date: Wed, 1 Aug 2018 22:20:51 +0300 Subject: benchmark: add lines to scatter plots Adds lines between the points of the same category in scatter.R plots. PR-URL: https://github.com/nodejs/node/pull/22074 Reviewed-By: Andreas Madsen Reviewed-By: Anatoli Papirovski Reviewed-By: James M Snell Reviewed-By: Tiancheng "Timothy" Gu --- benchmark/scatter.R | 1 + 1 file changed, 1 insertion(+) (limited to 'benchmark') diff --git a/benchmark/scatter.R b/benchmark/scatter.R index 10e099e430..1574987aeb 100644 --- a/benchmark/scatter.R +++ b/benchmark/scatter.R @@ -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); -- cgit v1.2.3