Sha256: 2e941fa07b50985c6f56ea4f2ed114e8579fc931ea6df1c8ea716ce4c9f8b512
Contents?: true
Size: 378 Bytes
Versions: 33
Compression:
Stored size: 378 Bytes
Contents
#!/bin/sh gnuplot >size-rate.jpg << _EOF_ set terminal png nocrop enhanced font verdana 12 size 640,480 set logscale x set logscale y set grid set xlabel 'Serialized object size, octets' set ylabel 'decode(encode(obj)) rate, 1/sec' 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 _EOF_
Version data entries
33 entries across 33 versions & 4 rubygems