What do I need to do to see the HAC p-values/t-values to this regression?
proc autoreg data = model_input_6;
model depvariable= indpevariable;
run;
Thanks,
Umair
Hi Umair,
To obtain HAC standard errors, t-values and p-values associated with the parameter estimates, you can add the COVEST=HAC option to the MODEL statement in your PROC AUTOREG step. For example:
model y = x / covest=hac;
Additional kernel and bandwidth options can be specified in parentheses after the COVEST=HAC option. For details, please see the documentation on the COVEST= option available at the following link:
More details are available in the "Heteroscedasticity-and Autocorrelation-Consistent Covariance Matrix Estimator" section of the PROC AUTOREG documentation at the following link:
I hope this helps!
DW
Hi Umair,
To obtain HAC standard errors, t-values and p-values associated with the parameter estimates, you can add the COVEST=HAC option to the MODEL statement in your PROC AUTOREG step. For example:
model y = x / covest=hac;
Additional kernel and bandwidth options can be specified in parentheses after the COVEST=HAC option. For details, please see the documentation on the COVEST= option available at the following link:
More details are available in the "Heteroscedasticity-and Autocorrelation-Consistent Covariance Matrix Estimator" section of the PROC AUTOREG documentation at the following link:
I hope this helps!
DW
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.