mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-07-12 20:29:46 +00:00
added benchmarks and scripts to run, parse and plot them
moved benchmark/run-slow-benchmarks.sh's content to Makefile
This commit is contained in:
19
benchmark/plot-histogram.gp
Normal file
19
benchmark/plot-histogram.gp
Normal file
@ -0,0 +1,19 @@
|
||||
set terminal jpeg large font arial size 1920,1080
|
||||
set output 'benchmark/histogram/distribution.jpg'
|
||||
|
||||
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
|
||||
set title "Number of files whose processed time was inside time interval"
|
||||
|
||||
plot newhistogram, 'benchmark/csv/enry-distribution.csv' using 3:xtic(1) title "enry", 'benchmark/csv/linguist-distribution.csv' using 3 title "linguist"
|
||||
|
||||
unset output
|
||||
|
Reference in New Issue
Block a user