Created
October 20, 2017 22:32
-
-
Save rvprasad/bbd597055af873653cd4d3009401a368 to your computer and use it in GitHub Desktop.
Creates the graph from the data generated by test_process.py.
This file contains 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 "test_process.png" | |
set logscale | |
set xlabel "Size of fixed data [Number of ints]" | |
set ylabel "Performance [seconds per iteration]" | |
set title "Performance of options vs Size of fixed data" | |
plot "test_process.csv" using 1:2 title "builtin pool" with linespoints, \ | |
"test_process.csv" using 1:3 title "custom pool" with linespoints |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to test_process.py gist.