1# qyj8888
The ODS table for R^2 and other Fit statistics is FitStatistics. See example below.
HTH.
data t1;
do i = 1 to 10;
x=rannor(190);
y=1+x+rannor(190);
output;
end;
run;
ods output ParameterEstimates=Parms ;
ods output FitStatistics=Stats;
proc reg;
model y = x;
run;
quit;
proc print data=Stats; run;