set terminal svg size 900, 500 set output "restrict_post_smooth.svg" set xlabel "Grid points" set ylabel "Residual value" set title "Smoothing" set key outside set key autotitle columnhead set pointsize 0.5 plot "restrict_post_smooth.data" index 0 using 1:2 with linespoints lt 1 lw 1, \ "restrict_post_smooth.data" index 1 using 1:2 with linespoints lt 2 lw 3 |