| Date: | Fri, 13 Nov 2009 14:31:06 -0800 |
| Reply-To: | SAS_learner <proccontents@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | SAS_learner <proccontents@GMAIL.COM> |
| Subject: | problem with generating Kaplan-Meier curve on EG |
| Content-Type: | text/plain; charset=ISO-8859-1 |
|---|
Dear all:
I am trying to generate a simple Kaplan-Meier curve using ODS graphics and
having some problems. My data is on server and I am using Enterprise
Guide. I've changed tried changing many of the EG settings (Tools >>>
Options >>> Results >>> Graphs ), without success. Any thoughts or hints
would be great.
Works (makes standard KM curve)
proc lifetest data=d_effic method=km plots=(survival);
time ttpfs*cspfs(0);
strata treat;
run;
Does Not Works (Note: If I use PC SAS, this works and generates a nice ODS
KM curve)
ods html;
ods graphics on;
proc lifetest data=d_effic method=km plots=(survival);
time ttpfs*cspfs(0);
strata treat;
run;
ods graphics off;
ods html close;
|