Date: Thu, 20 Mar 2008 13:56:59 -0500
Reply-To: "data _null_," <datanull@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "data _null_," <datanull@GMAIL.COM>
Subject: Re: PIE CHART PERCENTAGE LESS THAN ZERO
In-Reply-To: <dca1d2db-c0a0-42b1-a2eb-444e94fc31eb@u72g2000hsf.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Try: OTHER=0. pie statement option.
On Thu, Mar 20, 2008 at 1:20 PM, Mark <mfmfisher@gmail.com> wrote:
> Hi,
>
> The proc gchart procedure produces an output display with ZONE A and C
> summed up as OTHER. I have tried using the discrete option however
> this does not help.
>
> Is it possible to have a display for each value of zone ??
> Appreciate any help.
>
> Dataset : temp
> ZONE PERCENT
>
> A 0.3406
> B 21.2670
> C 0.0324
> D 48.6216
> E 29.7384
>
> This is the code I am using.
>
> proc format;
> picture pctfmt (round) 0-high='0009.99%';
> run;
>
>
> proc gchart data = temp;
> pie ZONE / sumvar = Percent noheading;
> format Percent pctfmt.;
> run;
>
|