# hole_path_commands.txt # # Usage: # gnuplot < hole_path_commands.txt # set term png set output "hole_paths.png" set xlabel 'Rho' set ylabel 'X(Rho)' set title 'Hole correlation' set grid set style data lines set key off plot 'hole_path_data.txt' using 1:2, \ 'hole_path_data.txt' using 1:3, \ 'hole_path_data.txt' using 1:4 quit