LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (February 2010, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 3 Feb 2010 12:42:51 -0600
Reply-To:   Robin R High <rhigh@UNMC.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Robin R High <rhigh@UNMC.EDU>
Subject:   Re: proc lifetest and survival analysis on sas
Comments:   To: sousimou <elidrissi.m@GMAIL.COM>
In-Reply-To:   <570617fa-1d17-40fd-b936-e71f5dbd5f2e@f5g2000vbm.googlegroups.com>
Content-Type:   text/plain; charset="ISO-8859-1"

It might be of value if we knew more about the context of your problem and what objective you are seeking.

Robin High UNMC

From: sousimou <elidrissi.m@GMAIL.COM> To: SAS-L@LISTSERV.UGA.EDU Date: 02/03/2010 08:35 AM Subject: proc lifetest and survival analysis on sas Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>

hello every body, may be someone have solution for my problem :

time to event analysis we use usually this :

PROC PHREG DATA=table; MODEL time*censor(0)=group / RL ALPHA=0.05; RUN; the corresponding kaplan meier graph, we use this procedure : PROC LIFETEST DATA=table PLOTS=(SURVIVAL) ; TIME time**censor(0); STRATA group; RUN;

question for this model how to complete the proc lifetest procédure with start and stop PROC PHREG DATA=table; MODEL (start, stop)*censor(0)=group / RL ALPHA=0.05; RUN;

thanks you


Back to: Top of message | Previous page | Main SAS-L page