Skip to content

Instantly share code, notes, and snippets.

@skyrocknroll
Last active October 13, 2015 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skyrocknroll/4175916 to your computer and use it in GitHub Desktop.
Save skyrocknroll/4175916 to your computer and use it in GitHub Desktop.
GNUPlot Script
#To install apt-get install gnuplot gnuplot-x11 (tested)
#To install apt-get install gnuplot gnuplot-qt (Not tested)
set xlabel "Requests"
set ylabel "Response time (ms)"
set title "ab -n 1000 -c 100"
plot "apache1000-100-200K.tsv" using 9 smooth sbezier with lines title "time for 200K",\
"apache1000-100-500K.tsv" using 9 smooth sbezier with lines title "time for 500K",\
"apache1000-100-1M.tsv" using 9 smooth sbezier with lines title "time for 1M",\
"apache1000-100-10M.tsv" using 9 smooth sbezier with lines title "time for 10M"
pause -1
#Examples
#http://gnuplot.sourceforge.net/demo_4.6/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment