1set title "Monotonic cubic splines" 2 3set style data lines 4set xrange [ 233. : 388. ] 5set yrange [ 1.75 : 32.0 ] 6 7plot 'silver.dat' using 1:2 with points pt 7 ps 2 lc "grey" title 'raw data', \ 8 '' using 1:2 smooth csplines lt 1 title 'smooth cspline', \ 9 '' using 1:2 smooth mcs lt 3 title 'smooth mcs' 10 11pause -1 "Hit <cr> to continue" 12 13set title "Monotonic cubic splines (log-scale data)" 14set log y 15set ytics (1,2,3,4,5,10,20) 16refresh 17 18pause -1 "Hit <cr> to continue" 19reset 20