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 (November 2010, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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....
Comments: To: Sally Muller <sallymuller@BELLSOUTH.NET>

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;


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