1# This Gnuplot file has been generated by eNovance 2 3set title '$0' 4 5set terminal png size 1280,1024 6set output '$3.png' 7#set terminal x11 8 9#Preparing Axes 10#set logscale x 11set ytics axis out auto 12#set data style lines 13set key top left reverse 14set xlabel "Time (Seconds)" 15set ylabel '$4' 16set xrange [0:] 17set yrange [0:] 18 19#Set Color style 20#set palette rgbformulae 22,9,23 21#set palette rgbformulae 7,5,15 22set style line 100 lt 7 lw 0.5 23set style line 1 lt 1 lw 3 pt 3 linecolor rgb "green" 24 25plot '$1' using 2:3 with linespoints title '$2', $7 w l ls 1 ti 'Global average value ($7)' 26 27set output '$5.png' 28plot '$1' using 2:3 smooth csplines title '$2', $7 w l ls 1 ti 'Global average value ($7)' 29 30set output '$6.png' 31plot '$1' using 2:3 smooth bezier title '$2', $7 w l ls 1 ti 'Global average value ($7)' 32 33#pause -1 34#The End 35