From a9650594f76505ec0bc851fac0dde1791e02acbc Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Tue, 19 May 2020 13:24:54 +0000
Subject: [PATCH] output SVG not PNG
---
compression_bench.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/compression_bench.sh b/compression_bench.sh
index 6eea870..2aa84cc 100755
--- a/compression_bench.sh
+++ b/compression_bench.sh
@@ -117,7 +117,7 @@
read -p "Generate plot? Y/n " PLOT
if [[ -z $PLOT || $PLOT == "y" || $PLOT == "Y" ]]; then
gnuplot -e "set datafile separator \",\"; \
- set term png; \
- set output 'results.png'; \
+ set term svg; \
+ set output 'results.svg'; \
plot for [col=2:$((${#ALGS[@]}+1))] 'results.csv' using 1:col with lines title columnheader"
fi
--
Gitblit v1.10.0