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 2025: Call for Content

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1791 views
  • 2 likes
  • 2 in conversation