You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
677 B
22 lines
677 B
reset
|
|
set title "Benchmark of different processing time"
|
|
set boxwidth 0.9
|
|
set datafile separator ","
|
|
set style data histogram
|
|
set style histogram clustered gap 2
|
|
set style fill solid 0.7 border
|
|
set border lw 0.8
|
|
|
|
set ylabel "requests / second"
|
|
set xtics nomirror rotate by -45
|
|
set ytics nomirror
|
|
|
|
set border 1+2 back
|
|
set boxwidth -2
|
|
|
|
set grid
|
|
|
|
set term pngcairo font "Times Roman,14" enhanced size 1024,600 background rgb "gray80"
|
|
set output "../benchmark.png"
|
|
|
|
plot 't_processtime.csv' using 2:xticlabels(1) title columnheader(2), '' using 3:xticlabels(1) title columnheader(3), '' using 4:xticlabels(1) title columnheader(4), '' using 5:xticlabels(1) title columnheader(5)
|
|
|