blob: 2145a1cd1252425a2014b938f79b55ba27d9815f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set terminal pdfcairo
set style data histogram
set style histogram cluster gap 1
set style fill pattern 6 border -1
set nokey
set output "isam-tput.pdf"
unset mytics
set xtics out nomirror
set ytics out nomirror
set xlabel "Configuration (Policy + Scale Factor)"
set ylabel "Insertion Throughput\n(ins/s)"
set yrange [0:5e6]
plot '500m_tput.txt' using 2:xtic(1)
|