mirror of https://github.com/Chizi123/Scripts.git

Joel Grunbaum
2020-05-19 a9650594f76505ec0bc851fac0dde1791e02acbc
output SVG not PNG
1 files modified
4 ■■■■ changed files
compression_bench.sh 4 ●●●● patch | view | raw | blame | history
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