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
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!
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.