Create the EQUA data set. EQUA contains values of X and Y. Each value of X is calculated as 10Y.


data equa;
   do Y=1 to 3 by .1;
      X=10**y;
      output;
   end;
run;