Skip to content

Instantly share code, notes, and snippets.

@rvprasad
Created October 20, 2017 22:32
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 rvprasad/bbd597055af873653cd4d3009401a368 to your computer and use it in GitHub Desktop.
Save rvprasad/bbd597055af873653cd4d3009401a368 to your computer and use it in GitHub Desktop.
Creates the graph from the data generated by test_process.py.
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
@rvprasad
Copy link
Author

rvprasad commented Oct 20, 2017

Related to test_process.py gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment