# geyser_binned_input.txt # # Input to GNUPLOT, causing it to read GEYSER.TXT and # create a histogram of the data. # # Choose the output device. # set term png medium # # Name the output file. # set output "geyser_binned.png" # # Set the plot title. # set title "Time between eruptions of Old Faithful" set xlabel "Minutes" set ylabel "Frequency" # # Add grid lines. # set grid # set style fill solid # # Timestamp the plot. # set timestamp plot "geyser_binned.txt" using 1:2:(4.50) with boxes # # Terminate. # quit