# Globals set terminal png set xlabel "Emails Numbered 0-1073" textcolor rgbcolor "red" set ylabel "Variance between Email Numbers" textcolor rgbcolor "blue" # Regular chart in order set output "./variance.png" set title "Variance between Email Numbers" textcolor rgbcolor "brown" plot "./variance_results.txt" with lines # Sorted by variance and plotted. set output "./variance_sorted.png" set title "Variance between Email Numbers Sorted Numerically" textcolor rgbcolor "brown" plot "./variance_sorted_numerically.txt" with lines