Hi all,
I'm running a robust regression (m estimation) and would like to put out t statistics and (adjusted) r^2 to a dataset similar to the "outest = ... tableout" option when using proc reg.
Is it possible to do this?
Thanks in advance!
I don't see any place where ROBUSTREG produces t-statistics. The R-squared can be obtained by
ods output goodfit=goodfit;
if the estimation method produces R-squared as a standard output (M estimation does).
As far as I can see, ROBUSTREG does not produce adjusted R-squared, only R-squared. However, there's nothing stopping you from applying the adjusted R-squared formula to the actual R-squared if you want.
Hello,
outest= option in PROC ROBUSTREG is like outest= option in PROC REG.
What are you missing in the former that you have in the latter?
data a (drop=i);
do i=1 to 1000;
x1=rannor(1234);
x2=rannor(1234);
e=rannor(1234);
if i > 900 then y=100 + e;
else y=10 + 5*x1 + 3*x2 + .5 * e;
output;
end;
run;
proc reg data=a outest=abc;
model y = x1 x2;
run;
proc robustreg data=a method=m outest=xyz;
model y = x1 x2;
run;
/* end of program */
Thanks,
Koen
What you are asking for does not make sense, as stated.
For ordinary least-squares regression (OLS), the null hypothesis Beta_i = 0 is tested by using a t test.
But for M estimation, the test statistic for H0 is not t-distributed. Instead, you can test for Beta_i = 0 by using a robust version of the F test. The robust test statistic is distributed as a chi-square statistic. The details are provided in the doc: SAS Help Center: M Estimation
If your goal is to test the null hypothesis that Beta_i=0, then you can use the FWLS option on the PROC ROBUSTREG statement to display a table that shows the parameter estimates for the final weighted least squares fit. The following statements build on the program that @sbxkoenk provided:
proc robustreg data=a method=m outest=xyz FWLS;
model y = x1 x2;
ods output ParameterEstimatesF=PEFinal;
run;
proc print data=PEFinal;
run;
The ProbChiSq variable contains the p-values for the test statistic under the null hypothesis.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.