Skip to content

Instantly share code, notes, and snippets.

@DreamLinuxer
Created March 9, 2016 04:48
Show Gist options
  • Select an option

  • Save DreamLinuxer/8c24e36b83f9b5eea62b to your computer and use it in GitHub Desktop.

Select an option

Save DreamLinuxer/8c24e36b83f9b5eea62b to your computer and use it in GitHub Desktop.
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