fio2gnuplot: Display average value in label
[fio.git] / tools / plot / graph2D.gpm
CommitLineData
67b7db1e
EV
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
be34415a 11set ytics axis out auto
67b7db1e
EV
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
8ff749cc 25plot '$1' using 2:3 with linespoints title '$2', $7 w l ls 1 ti 'Global average value ($7)'
67b7db1e
EV
26
27set output '$5.png'
8ff749cc 28plot '$1' using 2:3 smooth csplines title '$2', $7 w l ls 1 ti 'Global average value ($7)'
67b7db1e
EV
29
30set output '$6.png'
8ff749cc 31plot '$1' using 2:3 smooth bezier title '$2', $7 w l ls 1 ti 'Global average value ($7)'
67b7db1e
EV
32
33#pause -1
34#The End