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