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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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