plot 378 B

12345678910111213
  1. #!/bin/sh
  2. gnuplot >size-rate.jpg << _EOF_
  3. set terminal png nocrop enhanced font verdana 12 size 640,480
  4. set logscale x
  5. set logscale y
  6. set grid
  7. set xlabel 'Serialized object size, octets'
  8. set ylabel 'decode(encode(obj)) rate, 1/sec'
  9. plot '00' using 1:2 title 'json' smooth bezier, '00' using 1:3 title 'msgpack' smooth bezier, '00' using 1:4 title 'bison' smooth bezier
  10. _EOF_