BookmarkSubscribeRSS Feed
ACNZ
Calcite | Level 5
For a simple regression on one explanatory variable i want to extract the t-stat on this variable and then divide this by the number of observations used in the regression. I need to do this for a number of regressions so i want to be able to write the commands rather than do it by hand.

Thanks
1 REPLY 1
Olivier
Pyrite | Level 9
When programming, you should use ODS OUTPUT statements to store informations displayed by your regression task into SAS datasets, so that you can re-use them to compute ratios or anything else.
Assuming that you're using PROC REG as a regression program (check the log in your task, or the generated code, if you have any doubt), that would mean doing something like :

ODS OUTPUT nObs = work.obs_number
(WHERE = (label = "Number of Observations Used"))
parameterEstimates = work.tstats ;
/* here just copy and paste the PROC REG code built by your Enterprise Guide task */

DATA work.t ;
MERGE work.tstats
work.obs_number (KEEP = NobsUsed) ;
ratio = tValue / NobsUsed ;
RUN ;
PROC PRINT DATA = work.t LABEL ;
RUN ;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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