# tourists_input.txt # # Input to GNUPLOT, causing it to read TOURISTS.TXT and # create a histogram of the data. # # Choose the output device. # set term png medium # # Name the output file. # set output "tourists.png" # # Set the plot title. # set title "Tourists to Apple Beach" set xlabel "Month" set ylabel "Count" # # Add grid lines. # set grid # set style fill solid # # Timestamp the plot. # set timestamp plot "tourists.txt" using 1:2:(0.90):xtic(3) with boxes # # Terminate. # quit