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