blob: 0e2b0cd85f55beb02fca09f1b633e45de6ece446 (
plain)
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
|
set terminal pdfcairo
set rmargin 4
set boxwidth 1
set output "btree-tput.pdf"
set style data histogram
set style histogram cluster gap 1
set style fill pattern 6 border -1
set format y "%1.1t{/Symbol \264}10^{%L}"
unset mytics
unset mxtics
unset key
set xtics out nomirror
set ytics out nomirror
set ylabel "Insertion Throughput\n(inserts / sec)" offset -1.5,0
set xlabel "Data Structure"
set yrange[0:7e6]
plot './data.tsv' using 2:xtic(1) title col
|