diff --git a/plot.p b/plot.p deleted file mode 100644 index 331d4b9..0000000 --- a/plot.p +++ /dev/null @@ -1,24 +0,0 @@ -# output as png image -set terminal png - -# save file to "out.png" -set output "out.png" - -# graph title -set title "ab -n 8000 -c 100" - -# nicer aspect ratio for image size -set size 2,0.7 - -# y-axis grid -set grid y - -# x-axis label -set xlabel "request" - -# y-axis label -set ylabel "response time (ms)" - -# plot data from "out.dat" using column 9 with smooth sbezier lines -# and title of "Vizsla" for the given data -plot "out.dat" using 9 smooth sbezier with lines title "Vizsla"