#!/usr/bin/gnuplot set title "White Go Stone Sizes" set xlabel "stone size#" set ylabel "thickness in mm" set key left set ytics 5, 1 set xtics 20, 2 set grid xtics ytics show grid set xrange [20:46] set yrange [ 5:13] set label "#33 = 1/33 shaku\n+/-size# = +/-.1 bu" at 33,8.9 left show label set terminal png size 550, 400 set output "./StoneSizes.png" plot "-" title "measured" with linespoints lt 2 pt 5, \ "-" title "theory" with linespoints lt 1 pt 4 22 6.3 25 7.0 28 7.5 30 8.0 31 8.4 32 8.8 33 9.2 34 9.5 35 9.8 36 10.1 37 10.4 38 10.7 39 11.0 40 11.3 41 11.6 42 11.9 43 12.2 44 12.5 45 12.8 end 22 5.849 25 6.758 28 7.668 30 8.274 31 8.577 32 8.880 33 9.183 34 9.486 35 9.789 36 10.092 37 10.395 38 10.698 39 11.001 40 11.304 41 11.607 42 11.910 43 12.213 44 12.516 45 12.819 end