data sasuser.rwg176; set sasuser.rwg176; lat2 = lat**2; cenlat = lat - mean; cenlat2 = cenlat**2; run;Now start up SAS INSIGHT again and proceed.
proc reg data sasuser.rwg137; model production = area year / dw; run;You make need to change the variables names to correpsond to how you entered them, but the Y variable goes on the left hand side of the equation and the X variables (year and area) go on the right hand side. Options for teh regression such as confidence intervals of the mean or prediction intervals (cli clm) go after the "/". In this case the "dw" tells SAS to compute the Durbin Watson Statistic.