BookmarkSubscribeRSS Feed
_user
Calcite | Level 5
My requirement is get  add N, number of events and median for the Univariate table that I am working on ? 
 
do you which option would give me Median , N and number of events ? 
 
 My  code looks like this below 
 
    ODS listing close;
    Ods output          ParameterEstimates= PE  modelanova = Anova ;
 
    proc phreg data = compl  ;
        class  Sex  (ref= 1) ;
        model AVAL*ACENFLN(1) = Sex / risklimits  ;
*        baseline  out =   mean survival = survival ;
    run;
  
    ODS output close;
 
Thanks 
2 REPLIES 2
Reeza
Super User

See this macro that I use sometimes, but its based on PROC LIFETEST. 

https://gist.github.com/statgeek/d3bce2a9e2ef0523db9d

 

  You’re trying to do something similar but with PROC PHREG. The table names can be found and captured using the following method:

https://blogs.sas.com/content/iml/2015/09/08/ods-table-names.html

 

 

_user
Calcite | Level 5

Hello Reeza , 

Yes I did out all the datasets and tried to look into them , but neither I was able find in the tables that come out of ODS TRACE / OFF  I also tried BASELINE =    but was not able to find MEDIAN  value able to capture N , number of events from Censoredsummary  = 

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 25. 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
  • 2 replies
  • 1770 views
  • 0 likes
  • 2 in conversation