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 (April 2001, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 17 Apr 2001 12:50:12 -0700
Reply-To:     Cassell.David@EPAMAIL.EPA.GOV
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "David L. Cassell" <Cassell.David@EPAMAIL.EPA.GOV>
Subject:      Re: Graphing in SAS
Content-type: text/plain; charset=us-ascii

Travis Folk wrote [in part]: > My question concerns the presentation of these results. I would like to > create a rose diagram (histogram for circular data) based on the SD value of > each bird.

Travis, you'll find that even in 6.12 PROC GCHART has the STAR statement. You can fudge any variable you want for the radius of the rose by first computing the sd and then telling SAS that it is the *frequency*. Sort of like this:

proc gchart data=sd_comps; star bird / freq=sd /* noconnect */;

The noconnect statement would give you a star chart with unconnected radii. Leaving it out will give you a rose with the radii all connected - which may or may not be what looks best for your problem.

David -- David Cassell, OAO Corp. Cassell.David@epa.gov Senior computing specialist mathematical statistician


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