blob: e97a3f3ca9912612fb4f6a5a1150924f60a5f0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/gnuplot
set terminal png size 860,350 font "Arial,8"
set datafile separator ","
set datafile missing "-"
set style data histogram
set style fill solid border linecolor black
set style histogram clustered gap 2
set boxwidth 1
set key left top noenhanced
set xtics scale 0
set grid ytics
set ylabel "avg. time (ns)"
DATA_FILE="performance.csv"
set output "performance.png"
plot for [COL=2:6] DATA_FILE using COL:xtic(1) title columnheader
|