-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup.plot
25 lines (19 loc) · 846 Bytes
/
startup.plot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
set terminal pngcairo enhanced font "Arial,32" fontscale 1.0 size 1600, 1000
set output "startup.png"
set samples 600, 600
set title "Time to first operation"
set xlabel "ms"
set offset 0,0,10,10
barwidth = 2.0
barspace = -10.0
unset border
set tics scale 0
set grid #noxtics nomxtics ytics
set style fill solid noborder
set xtics 1000
set ytics offset 0,first -barwidth/2
plot \
'startup.data' using ($2*0.5):($0*barspace+1*barwidth):($2*0.5):(barwidth/2):yticlabel(1) title "OpenJDK" with boxxyerrorbars linecolor rgb "red" , \
'startup.data' using ($2+20):($0*barspace+1*barwidth):2 with labels left notitle, \
'startup.data' using ($3*0.5):($0*barspace+0*barwidth):($3*0.5):(barwidth/2) title "OpenJDK on CRaC" with boxxyerrorbars linecolor rgb "blue", \
'startup.data' using ($3+20):($0*barspace+0*barwidth):3 with labels left notitle