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 (October 1999, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 13 Oct 1999 16:41:36 -0400
Reply-To:   Andre Couturier <couturie@ICM.UMONTREAL.CA>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Andre Couturier <couturie@ICM.UMONTREAL.CA>
Organization:   Montreal Heart Institute
Subject:   Kaplan Meier plot
Content-Type:   text/plain; charset=us-ascii

Hi

I'm having problem ploting Postscript Kaplan-Meier curves.

Using the following code, I managed to get the graphs in the file "KMENDO.ps".

1- With ghostview I can only see the 1st one but can plot both. Does anyone know why?

2- Does anyone know how to put the confidence interval and the result from the log-rank test on the graph?

Many thanks

Andre Couturier Motreal Heart Institute

Here is the code: filename gsasfile "KMENDO.ps"; goptions ftext=swiss device=ljivps gaccess=gsasfile border vsize=9 in vorigin=1 in hsize=6.5 in horigin=1 in;

proc lifetest data = endo plots=(s) graphics; time time*endo2(0); strata group2; symbol v=none color=black line=1; symbol v=none color=black line=2; symbol v=none color=black line=3; run;


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