LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2006, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 12 Sep 2006 19:55:41 -0400
Reply-To:     Ya Huang <ya.huang@AMYLIN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Ya Huang <ya.huang@AMYLIN.COM>
Subject:      ods listing close failed to suppress proc corr output

Hi there,

Can someone take a look at this and tell me what I did wrong? I expected only see the graph, but the proc corr output also show up in the pdf file.

Thanks

Ya

ods pdf file="C:\temp\junk.pdf"; ods listing close;

ods output PearsonCorr=pv;

proc corr data=sashelp.class; var weight height; run;

goptions reset=all dev=sasprtc ftext="Times" htext=2.5pct;

proc gplot data=sashelp.class; plot weight*height; run; quit;

ods listing; ods pdf close;


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