Created
March 9, 2016 04:48
-
-
Save DreamLinuxer/8c24e36b83f9b5eea62b to your computer and use it in GitHub Desktop.
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 datafile separator "," | |
| set terminal postscript eps enhanced color font 'Helvetica,20' | |
| set output 'cold-hot.eps' | |
| set xrange [1:18] | |
| set yrange [2000:20000] | |
| set xlabel 'Thread number' | |
| set ylabel 'ops/ms' | |
| plot '1448725779_G0.5-I0.25_pure.csv' using 1:2:3 title 'PureMap' with yerrorlines pointtype 4 pointsize 2, '1448725779_G0.5-I0.25_ctrie.csv' using 1:2:3 title 'Ctrie' with yerrorlines pointtype 7 pointsize 2, '1448725779_G0.5-I0.25_adaptive.csv' using 1:2:3 title 'AdaptiveMap' with yerrorlines pointtype 8 pointsize 2 | |
| exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment