Created
March 20, 2015 10:02
-
-
Save diablowu/298c71551651e01d8f8b to your computer and use it in GitHub Desktop.
gnuplot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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