Skip to content

Instantly share code, notes, and snippets.

@diablowu
Created March 20, 2015 10:02
Show Gist options
  • Select an option

  • Save diablowu/298c71551651e01d8f8b to your computer and use it in GitHub Desktop.

Select an option

Save diablowu/298c71551651e01d8f8b to your computer and use it in GitHub Desktop.
gnuplot
set terminal png
set output "ctime.png"
set xlabel "request"
set ylabel "ms"
plot "g.cvs" using 7 with lines title "ctime"
set terminal png
set output "dtime.png"
set xlabel "request"
set ylabel "ms"
plot "g.cvs" using 8 with lines title "dtime"
set terminal png
set output "ttime.png"
set xlabel "request"
set ylabel "ms"
plot "g.cvs" using 9 with lines title "ttime"
set terminal png
set output "wait.png"
set xlabel "request"
set ylabel "ms"
plot "g.cvs" using 10 with lines title "wait"
set terminal png
set output "percent.png"
set xlabel "percent"
set ylabel "ms"
plot "p.cvs" using 1 with lines title "server"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment