BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ubshams
Quartz | Level 8

 

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

 

1 ACCEPTED SOLUTION

Accepted Solutions
dw_sas
SAS Employee

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:

 

https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_autoreg_syntax05.htm&docsetVersi...

 

More details are available in the "Heteroscedasticity-and Autocorrelation-Consistent Covariance Matrix Estimator" section of the PROC AUTOREG documentation at the following link:

 

 https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_autoreg_details20.htm&docsetVers...

 

I hope this helps!

DW

View solution in original post

1 REPLY 1
dw_sas
SAS Employee

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:

 

https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_autoreg_syntax05.htm&docsetVersi...

 

More details are available in the "Heteroscedasticity-and Autocorrelation-Consistent Covariance Matrix Estimator" section of the PROC AUTOREG documentation at the following link:

 

 https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_autoreg_details20.htm&docsetVers...

 

I hope this helps!

DW

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Multiple Linear Regression in SAS

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.

Discussion stats
  • 1 reply
  • 1919 views
  • 0 likes
  • 2 in conversation