# exponential_plots_commands.txt # # Usage: # gnuplot < exponential_plots_commands.txt # set term png set output "exponential_plots.png" set xlabel 'Rho' set ylabel 'Correlation(Rho)' set title 'Exponential correlation' set grid set style data lines set key off plot 'exponential_plots_data.txt' using 1:2 lw 3, \ 'exponential_plots_data.txt' using 1:3 lw 3, \ 'exponential_plots_data.txt' using 1:4 lw 3, \ 'exponential_plots_data.txt' using 1:5 lw 3, \ 'exponential_plots_data.txt' using 1:6 lw 3, \ 'exponential_plots_data.txt' using 1:7 lw 3, \ 'exponential_plots_data.txt' using 1:8 lw 3 quit