mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-15 01:17:34 +00:00
4086895249
* add scripts to benchmark and plot performance across tags * missing newline * fmt
10 lines
264 B
Gnuplot
10 lines
264 B
Gnuplot
set terminal png size 800,600
|
|
set output "hack/bench/versions.png"
|
|
|
|
set title "User Time vs. Version"
|
|
set xlabel "Version"
|
|
set ylabel "Average User Time (s)"
|
|
|
|
set xtics rotate by -45
|
|
|
|
plot "hack/bench/plot.txt" using 2:xtic(1) with linespoints linestyle 1 notitle
|