From fbc4c10400f3dedb7a221df6d271e40d1bb89268 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Fri, 23 Feb 2018 22:02:59 +0100 Subject: Minor fixes to the plots. --- plot.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/plot.sh b/plot.sh index 51652a9..3874722 100755 --- a/plot.sh +++ b/plot.sh @@ -40,18 +40,19 @@ function gnuplot_conf { echo "'' using 1:9 title 'Peak player count'" elif [ "$SELECT" == "ping" ]; then echo "set title \"Mean ping over time\n$TS\"" - echo "set ylabel 'Mean ping'" - echo -n "plot '$DATA' using 1:3 axes x1y1 title 'Mean ping'" + echo "set key off" + echo "set ylabel \"Mean ping [ms]\"" + echo -n "plot '$DATA' using 1:3 axes x1y1" elif [ "$SELECT" == "ping-distrib" ]; then echo "set title \"Ping distribution over time\n$TS\"" echo "set ylabel 'Fraction of players'" echo "set yrange [0:1]" echo -n "plot '$DATA'" - echo -n "using 1:4 title 'Above 60', " - echo -n "'' using 1:5 title 'Above 110', " - echo -n "'' using 1:6 title 'Above 160', " - echo -n "'' using 1:7 title 'Above 210', " - echo "'' using 1:8 title 'Above 260'" + echo -n "using 1:4 title 'Above 60ms', " + echo -n "'' using 1:5 title 'Above 110ms', " + echo -n "'' using 1:6 title 'Above 160ms', " + echo -n "'' using 1:7 title 'Above 210ms', " + echo "'' using 1:8 title 'Above 260ms'" else echo "SELECT is wrong" 1>&2 fi -- cgit