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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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