-
Notifications
You must be signed in to change notification settings - Fork 522
/
bench_graph_cached.gnuplot
72 lines (54 loc) · 1.51 KB
/
bench_graph_cached.gnuplot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/gnuplot
reset
#fontsize = 12
set terminal pngcairo crop size 1000,640
set output "bench/bench.png"
#set key at graph 0.24, 0.8 horizontal samplen 0.1
set key at graph 0.0, 0.8 horizontal samplen 0.1
set style data histogram
set style histogram errorbars gap 2 lw 1
set style fill solid 1.00 border 0
set boxwidth 0.8
set xtic rotate
unset ytics
set y2tics rotate by 90
#set yrange [0:100];
set y2label 'Time (seconds)' offset -2.5
set xlabel ' '
set size 1, 1
set label 1 'goofys' at graph -0.75, 0.8 left rotate by 90
set label 2 's3fs' at graph -0.45, 0.8 left rotate by 90
set label 3 'riofs' at graph -0.13, 0.8 left rotate by 90
set lmargin at screen 0.1
set datafile separator "\t"
set multiplot #layout 1,3
set bmargin at screen 0.4
#set size 1, 1
set origin 0.0,0.1
set size 0.3,0.8
set xrange [-0.5:0.8]
plot 'bench/bench.data' using 2:3:4 title " ", \
'' using 5:6:7 title " ", \
'' using 8:9:10 title " ", \
'' using 0:(0):xticlabel(1) w l title ''
set key off
unset label 1
unset label 2
unset label 3
set lmargin
set origin 0.3,0.1
set size 0.2,0.8
set xrange [0.5:1.8]
plot 'bench/bench.data' using 2:3:4 title " ", \
'' using 5:6:7 title " ", \
'' using 8:9:10 title " ", \
'' using 0:(0):xticlabel(1) w l title ''
set origin 0.5,0.1
set size 0.2,0.8
set xrange [1.5:2.8]
set yrange [0:0.1]
plot 'bench/bench.data' using 2:3:4 title " ", \
'' using 5:6:7 title " ", \
'' using 8:9:10 title " ", \
'' using 0:(0):xticlabel(1) w l title ''
unset multiplot