# snowfall_commands.txt # # Usage: # gnuplot < snowfall_commands.txt # set term png set output 'snowfall_plot.png' set xlabel '<--- Year --->' set ylabel '<--- Total Snow in Inches --->' set title 'Yearly Snowfall at Michigan Tech' set grid set style data lines plot 'snowfall_data.txt' using 1:10 with lines lw 3 quit