Generate the contour plot using the spline interpolation.


proc gcontour data=numspl;
   plot y*x=z / 
      haxis=axis1 
      vaxis=axis1;
   run;
quit;