2017-07-05 06:21:08 +00:00
#!/usr/bin/env gnuplot
2017-07-04 14:33:17 +00:00
set terminal png large font "arial,26" size 1920,1080
2017-07-10 15:08:21 +00:00
set output 'benchmarks/histogram/distribution.png'
2017-06-28 11:01:36 +00:00
set datafile separator comma
set key under
set style data histogram
set style histogram clustered gap 1 title offset 1,1
set style fill solid noborder
set boxwidth 0.95
set grid y
set bmargin 12
set autoscale
2017-07-04 14:33:17 +00:00
set title "Number of files per processing time"
2017-06-28 11:01:36 +00:00
2017-07-10 15:08:21 +00:00
plot newhistogram, 'benchmarks/csv/enry-distribution.csv' using 3:xtic(1) title "enry", 'benchmarks/csv/linguist-distribution.csv' using 3 title "linguist"
2017-06-28 11:01:36 +00:00
unset output