# Plot main graph and thumbnail of hits by day of week. # Input format: #0 12.77 #1 8.66 #2 17.49 #3 9.39 #4 15.66 #5 18.08 #6 17.95 # Plot main graph. set terminal png set output ".work/DayOfWeek.png" set terminal png small size 640,480 set title "% hits by day of week UTC, Sunday = 0" set format x "%g" set format y "%g%%" set xrange [-0.5:6.5] set yrange [0:] set xtics 1 #set noytics #set noborder #set rmargin 0 #set tmargin 0 #set bmargin 0 #set lmargin 0 set style fill solid plot ".work/DayOfWeek.dat" \ using 1:2 notitle with boxes # Plot thumbnail set terminal png set output ".work/DayOfWeek-tn.png" set terminal png small size 80,60 set xrange [-0.5:6.5] set noxtics set noytics set noborder set rmargin 0 set tmargin 0 set bmargin 0 set lmargin 0 set style fill solid plot ".work/DayOfWeek.dat" \ using 1:2 notitle with boxes