1#!/usr/bin/gnuplot
2
3set term pngcairo font "arial,9"
4set output 'temp.png'
5
6set datafile separator ','
7
8set title db font ",11"
9
10# grid line style
11set linestyle 1 lc rgbcolor '#a9a9a9' lw 1
12
13set grid noxtics nomxtics ytics nomytics ls 1
14set border ls 1
15set xtics textcolor rgbcolor 'black'
16set ytics textcolor rgbcolor 'black'
17
18set key outside right top font ",10"
19
20set xlabel 'Queries-per-connection' font ",10"
21set ylabel 'Queries-per-second' font ",10"
22
23# graph line styles
24set linestyle 2 lc 'red' lw 2
25
26plot \
27	'temp.csv' using 1:2 smooth bezier title db ls 2
28