From 2899bb75d3d6905507c31001f4cd707a499da556 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Mon, 24 Sep 2018 23:13:37 +0200 Subject: [PATCH] Plot graphs from zero and add grid --- graphGen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/graphGen.sh b/graphGen.sh index 5c9f538..6652f41 100755 --- a/graphGen.sh +++ b/graphGen.sh @@ -58,11 +58,12 @@ gnuplot -persist << EOFMarker set style data boxplot set style boxplot nooutliers + set grid unset key if ($USE_FPS == 1) { - plot for [i=1:N] file using (i):(1000/column(i)) + plot [][0:] for [i=1:N] file using (i):(1000/column(i)) } else { - plot for [i=1:N] file using (i):i + plot [][0:] for [i=1:N] file using (i):i } EOFMarker -- 2.39.2