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

Hi,

 

Using PROC REG I have managed to produce standard errors that are adjusted for heteroskedasticity using the HCC option.

 

However I don't know how to output the HCC adjusted t-stats to a table.

 

Here is my basic code which only prints the HCC adjusted t-stats, however I need a table so I can do some summary stats by month.

 

proc reg data=WORK.QUERY_FOR_CHARACTERISTICS_BY_LXI outest=CrossSectCharacter ADJRSQ TABLEOUT;
model Prop_B_A100_Mean = Min_Rating_Mean Age_Mean lnInitialAmt_Mean / hcc;
by YearMonth;
run;

 

Essentially I need to add an option after the outest command. 

 

Any help is very much appreciated!

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
First, use 

ods trace on;
proc reg...........
ods trace off;


to find the table name you want to output ,then 
(ParamEst is the table name you want to output)

ods output ParamEst=want;
proc reg .........


View solution in original post

1 REPLY 1
Ksharp
Super User
First, use 

ods trace on;
proc reg...........
ods trace off;


to find the table name you want to output ,then 
(ParamEst is the table name you want to output)

ods output ParamEst=want;
proc reg .........


sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1688 views
  • 2 likes
  • 2 in conversation