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