-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathbench_graph3.gnuplot
71 lines (54 loc) · 1.46 KB
/
bench_graph3.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
#!/usr/bin/gnuplot
reset
#fontsize = 12
set terminal pngcairo crop size 1000,640
set output ARG2
#set key at graph 0.24, 0.8 horizontal samplen 0.1
set key at graph -0.1, 0.75 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 ARG3 at graph -0.4, 0.8 left rotate by 90
#set label 2 ARG4 at graph -0.2, 0.8 left rotate by 90
#set label 3 ARG5 at graph 0, 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.31,0.8
set xrange [5.5:7.8]
plot ARG1 using 2:3:4 title ARG3, \
'' using 5:6:7 title ARG4, \
'' using 8:9:10 title ARG5, \
'' 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.255,0.1
set size 0.5,0.8
set xrange [-0.5:5.5]
plot ARG1 using 2:3:4 title ARG3, \
'' using 5:6:7 title ARG4, \
'' using 8:9:10 title ARG5, \
'' using 0:(0):xticlabel(1) w l title ''
set origin 0.7,0.1
set size 0.175,0.8
set xrange [7.5:8.7]
#set yrange [0:4.0]
plot ARG1 using 2:3:4 title ARG3, \
'' using 5:6:7 title ARG4, \
'' using 8:9:10 title ARG5, \
'' using 0:(0):xticlabel(1) w l title ''
unset multiplot