Date: Sat, 27 Nov 2010 14:33:57 -0500
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: Re: ODS Graphics question....
Add one line after ods graphic on statement:
ods html exclude CumFreqPlot;
HTH
Ya
On Sat, 27 Nov 2010 12:14:49 -0500, Sally Muller
<sallymuller@BELLSOUTH.NET> wrote:
>All,
>
>Everything works beautifully EXCEPT I'm getting TWO distribution
plots...one
>called FREQUENCY PLOT and one called
>CUMULATIVE FREQUENCY PLOT. I thought perhaps I could surpress the
>CUMULATIVE FREQUENCY PLOT with the NOCUM option
>on the TABLES statement but of course not that easy.
>
>Any suggestions most welcome as am hoping to use this example in a class
and
>want all the students to go...ohhhhhhh
>
>
>Thanks much!
>Sally
>
>
>ods listing close;
>
>filename htmlbody "D:\SMM\UF GMS 6803 FALL 2010 (3)\Homework\HW#13\Data and
>Programs\surveybody.html";
>
>ods html path = "D:\SMM\UF GMS 6803 FALL 2010 (3)\Homework\HW#13\Data and
>Programs\" (url = none)
> body = htmlbody (no_bottom_matter)
> style = statistical;
>
> ods graphics on / imagefmt =png;
>
>proc freq data=step1 (drop=ID MORT) order=freq;
> tables HP1 -- educ / nocum nopercent;
> title "Frequencies of Variables in Dataset";
> footnote "Note: Using ODS to send output ONLY to HTML, No Listing" ;
>run;
>
>ods html close;
|