fio2gnuplot: Display average value in label
[fio.git] / tools / plot / graph3D.gpm
CommitLineData
9402b895
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#3D Config
9set isosamples 30
10set hidden3d
11set pm3d at s solid hidden3d 100 scansbackward
12set pm3d depthorder
13
14#Preparing Axes
15#set logscale x
16set ytics axis out 0,1
17#set data style lines
18set grid back
19set key top left reverse
20set ylabel "Disk"
21set xlabel "Time (Seconds)"
22set zlabel '$4'
23set cbrange [0:]
24set zrange [0:]
25
26#Set Color style
27#set palette rgbformulae 22,9,23
28set palette rgbformulae 7,5,15
29set style line 100 lt 7 lw 0.5
30
31#Multiploting
32set multiplot
33
34#Top Left View
35set size 0.5,0.5
36set view 64,216
37set origin 0,0.5
38splot '$1' using 2:1:3 with linespoints title '$2'
39
40#Top Right View
41set size 0.5,0.5
42set origin 0.5,0.5
43set view 90,0
44set pm3d at s solid hidden3d 100 scansbackward
45set pm3d depthorder
46splot '$1' using 2:1:3 with linespoints title '$2'
47
48#Bottom Right View
49set size 0.5,0.5
50set origin 0.5,0
51set view 63,161
52set pm3d at s solid hidden3d 100 scansbackward
53set pm3d depthorder
54splot '$1' using 2:1:3 with linespoints title '$2'
55
56#Bottom Left View
57set size 0.5,0.5
58set origin 0,0
59set pm3d map
60splot '$1' using 2:1:3 with linespoints title '$2'
61
62#Unsetting multiplotting
63unset multiplot
64#pause -1
65
66#Preparing 3D Interactive view
67set mouse
68set terminal png size 1024,768
69set output '$3-3D.png'
70
71#set term x11
72set view 64,216
73set origin 0,0
74set size 1,1
75set pm3d at bs solid hidden3d 100 scansbackward
76set pm3d depthorder
77splot '$1' using 2:1:3 with linespoints title '$2'
78
79#pause -1
80#The End