BookmarkSubscribeRSS Feed
xinjian
Calcite | Level 5

 

data want;

input ID group status time;

datalines;

1 1 1 78

2 1 0 80

3 1 0 90

4 1 0 101

5 3 1 52

6 4 0 190

7 2 1 95

8 3 0 100

9 4 1 61

run;

 

Hi Everyone,

Above is my survival data set. and I want to have hazard rate and 95%CI for each level of 'group'.Can I use proc lifetest or proc phreg to have my results?

Thanks so much for your help, 

Xinjian

1 REPLY 1
xinjian
Calcite | Level 5

I have tried below sybtaxes (status: 1=stroke, 0=no stroke)

proc lifetest data = want plot= survival (nocensor failure );

time time*status(0);

strata group ;

run;

proc phreg data=want;

class group (ref='1');

model time*status(0)= group/ rl ;

run;

I just cannot get Hazard rate (I don't get hazard ratio) and 95% CI for four levels of group. The output shoulb like this table below.

group

N

stroke

Hazard rate

95%CI

1

       

2

       

3

       

4

       

 

Is it possible SAS 9.4 can give results like above?

THanks,

XD

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 1261 views
  • 0 likes
  • 1 in conversation