| 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;
|