| Date: | Mon, 7 Jun 2004 15:01:41 -0400 |
| Reply-To: | "Chen, Jian" <OZZ6@CDC.GOV> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Chen, Jian" <OZZ6@CDC.GOV> |
| Subject: | Re: SAS/Graph |
|
| Content-Type: | text/plain; charset="us-ascii" |
I tried it again. It doesn't work. It's kind of strange.
My SAS information:
Release 8.02 TS level02MO
OS: windows version 5.0.2195
-----Original Message-----
From: Bruce Johnson [mailto:bjohnson@Solucient.com]
Sent: Monday, June 07, 2004 2:47 PM
To: Chen, Jian; SAS-L@LISTSERV.UGA.EDU
Subject: RE: Re: SAS/Graph
It worked for me too...using SAS 8.0 (why we haven't upgraded to
8.2..who knows)
________________________________
Bruce A. Johnson
bjohnson@solucient.com
-----Original Message-----
From: Chen, Jian [mailto:OZZ6@CDC.GOV]
Sent: Monday, June 07, 2004 1:33 PM
To: Bruce Johnson; SAS-L@LISTSERV.UGA.EDU
Subject: RE: Re: SAS/Graph
No, it doesn't work.
It doesn't stand out for the explode= ...
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Bruce Johnson
Sent: Monday, June 07, 2004 2:18 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: SAS/Graph
It works for me....
________________________________
Bruce A. Johnson
bjohnson@solucient.com
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Chen, Jian
Sent: Monday, June 07, 2004 12:17 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: SAS/Graph
Following is a pie chart code, I don't know why the explode='At Risk
Overweight and Obese' doesn't work?
goptions reset=global htext=3 pct ftext=swiss border;
data one;
input group $32. number;
cards;
Normal 133
Underweight 15
At Risk Overweight and Obese 78
;
proc freq;
tables group/out=pct;
weight number;
run;
proc format;
value $groupfmt AtRISk='At Risk for Overweight and Obese'
;
picture pctfmt (round) 0-high='000.0%';
run;
proc gchart ;
title h=4 pct 'Percentage of Children by Weight Categories, CY 2002';
pie group/sumvar=percent noheading fill=s explode='At Risk Overweight
and Obese' coutline=black ; format percent pctfmt.; pattern1 v=s c=stpk;
pattern2 v=s c=depk; pattern3 v=s c=vpab; format group $groupfmt.; run;
quit; This message is a private communication. It may contain
information that is confidential and legally protected from disclosure.
If you are not an intended recipient, please do not read, copy or use
this message or any attachments, and do not disclose them to others.
Please notify the sender of the delivery error by replying to this
message, and then delete it and any attachments from your system. Thank
you, Solucient LLC (rev eXclaimer 2x)
|