plot 385 B

123456789
  1. # The one with (nearly) no collisions
  2. set terminal postscript enhanced colour portrait size 6,6
  3. set out 'dist_statesaving.eps'
  4. set key top left
  5. set title "Different state saving methods"
  6. set xlabel "Models"
  7. set ylabel "Time (s)"
  8. plot 'dist_statesaving/result_deepcopy' title 'Deepcopy', 'dist_statesaving/result_pickleH' title 'Pickle', 'dist_statesaving/result_custom' title 'Custom'