set terminal jpeg medium set xlabel "Date" set ylabel "Hours" set output "/tmp/practice_graph_progress.jpg" set xdata time set timefmt "%y%m%d" set yrange [3000:10000] set xrange ["090622":"270101"] set xtics rotate plot '/var/www/practiceGraph/prac_accumulated.dat' using 1:2 with lines lt 1 lw 3 title "Actual practice progress", '/var/www/practiceGraph/1_hour_day_line.dat' using 1:2 with lines lt 8 lw 1 title "Predicted progress at .91 hours/day", '/var/www/practiceGraph/2_hour_day_line.dat' using 1:2 with lines lt 5 lw 1 title "Predicted progress at 2.05 hours/day" # awk '{x=x+$2+$3+$4+$5; print $1,x+4218}' /data/personal/prac_data.dat > /tmp/prac_accumulated.dat