set terminal png size 1200,600 set output "fig_test9-1.png" set title "Test of ''filledcurves'' (size 1200*600)" set xrange [1900:2010] set ylabel "Total rainfall of Maebashi City (mm)" set key outside bottom # plot \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11+$12+$13) with filledcurves x1 title "Dec", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11+$12) with filledcurves x1 title "Nov", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11) with filledcurves x1 title "Oct", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10) with filledcurves x1 title "Sep", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9) with filledcurves x1 title "Aug", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8) with filledcurves x1 title "Jul", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7) with filledcurves x1 title "Jun", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6) with filledcurves x1 title "May", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5) with filledcurves x1 title "Apr", \ "inpMAEBASHI.txt" using 1:($2+$3+$4) with filledcurves x1 title "Mar", \ "inpMAEBASHI.txt" using 1:($2+$3) with filledcurves x1 title "Feb", \ "inpMAEBASHI.txt" using 1:($2) with filledcurves x1 title "Jan" # reset set terminal png size 640,480 set output "fig_test9-2.png" set title "Test of ''boxes'' (size 640*480)" set xrange [1999.5:2009.5] set ylabel "Total rainfall of Maebashi City (mm)" set key outside bottom set style fill solid border -1 set boxwidth 0.8 # plot \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11+$12+$13) with boxes title "Dec", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11+$12) with boxes title "Nov", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10+$11) with boxes title "Oct", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9+$10) with boxes title "Sep", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8+$9) with boxes title "Aug", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7+$8) with boxes title "Jul", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6+$7) with boxes title "Jun", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5+$6) with boxes title "May", \ "inpMAEBASHI.txt" using 1:($2+$3+$4+$5) with boxes title "Apr", \ "inpMAEBASHI.txt" using 1:($2+$3+$4) with boxes title "Mar", \ "inpMAEBASHI.txt" using 1:($2+$3) with boxes title "Feb", \ "inpMAEBASHI.txt" using 1:($2) with boxes title "Jan" #