Skip to content

Commit 31387b8

Browse files
authored
Merge pull request #593 from EspressoSystems/tw/gnuplot-fix
gnuplot: Move legend out of graph.
2 parents 8eb4e5e + 12197e7 commit 31387b8

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

benchmarks/sailfish.gnuplot

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ set termopt enhanced
22
set datafile separator ','
33
set xlabel 'Round'
44
set ylabel 'Duration (ms)'
5+
set key outside right bottom
6+
set margins 10,25,5,5
7+
set yrange [0:30]
58

69
set term svg size 800,600 background "#FFFFFF"
710

811
plot filename using 1:2 with lines lc rgb "#A000DD00" title 'Round start',\
9-
filename using 1:3 with lines lc rgb "#A000DD00" title 'RBC leader info',\
10-
filename using 1:4 with lines lc rgb "#A0DD0000" title 'Commitment'
12+
filename using 1:3 with lines lc rgb "#A00000DD" title 'RBC leader info',\
13+
filename using 1:4 with lines lc rgb "#A0DD0000" title 'Commit'

benchmarks/timeboost-verified.gnuplot

Lines changed: 0 additions & 12 deletions
This file was deleted.

benchmarks/timeboost.gnuplot

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ set termopt enhanced
22
set datafile separator ','
33
set xlabel 'Round'
44
set ylabel 'Duration (ms)'
5+
set key outside right bottom
6+
set margins 10,20,5,5
57

68
set term svg size 800,600 background "#FFFFFF"
79

810
plot filename using 1:2 with lines lc rgb "#A000DD00" title 'Round start',\
911
filename using 1:3 with lines lc rgb "#A0DDDD00" title 'RBC leader info',\
10-
filename using 1:4 with lines lc rgb "#A00000DD" title 'Sailfish commit',\
12+
filename using 1:4 with lines lc rgb "#A00000DD" title 'Commit',\
1113
filename using 1:5 with lines lc rgb "#A0DD0000" title 'Decrypt',\
1214
filename using 1:6 with lines lc rgb "#A000DDDD" title 'Certify',\
13-
filename using 1:7 with lines lc rgb "#A0DD00DD" title 'Sailfish commit ⟶ Certify'
15+
filename using 1:7 with lines lc rgb "#A0DD00DD" title 'Total'

0 commit comments

Comments
 (0)