blob: 5725291e633b46ddef3727ce915100c4d35677ce (
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 "knn-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 '200m_tput.txt' using 2:xtic(1)
|