# Terminal set terminal png size 800, 400 enhanced # Miscellaneous set lmargin 6 set rmargin 3 set key inside left top box set tics font "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf, 8" ### World # X set xdata time set format x "%Y-%m-%d" set timefmt "%Y-%m-%d %H:%M" set grid xtics set xrange ["2009-04-24":] # Y set yrange [0:] set grid ytics # Confirmed #set output "h1n1_confirmed.png" #plot "h1n1.gpdat" using 2:5 title " Confirmed" with linespoints linecolor rgb "blue" # Death set output "h1n1_death.png" plot "h1n1.gpdat" using 2:6 title " Death" with linespoints linecolor rgb "red" # Areas #set yrange [0:193] #set output "h1n1_areas.png" #plot "h1n1.gpdat" using 2:4 title " Areas" with linespoints linecolor rgb "forest-green" # Mortality Rate #set yrange [0:*] #set output "h1n1_mortality.png" #set format y "%.0f%%" #plot "h1n1.gpdat" using 2:(100*$6/$5) title " Mortality Rate" with linespoints linecolor rgb "dark-red"