BookmarkSubscribeRSS Feed
Peter_Y
Calcite | Level 5

Hello all:

  I am wondering if you can ask SAS to size the slices in a pie chart according to the percentage but also display the mean sumvar statistics. For example, I can do

proc gchart data=survey;

   pie role / sumvar=score

   percent=inside

   value=arrow

   descending

   slice=arrow   

   coutline=black

   noheading;

run;

quit;

In this case, the slices are proportional to the % of role and sum of scores are displayed. What I really want is to display is the mean of scores. However when I add

type=mean

The size of slices become proportional to mean(score) instead of percentage now. How can I fix this?

Thanks,

Peter

2 REPLIES 2
MohammadFayaz
Calcite | Level 5

If you specify TYPE=MEAN and use the SUBGROUP= option, the height of the block represents the mean for the entire midpoint. The subgroup segments are proportional to the subgroup's contribution to the sum for the block.

From SAS Help.

GraphGuy
Meteorite | Level 14

Do you have any example data you can post up?

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1123 views
  • 0 likes
  • 3 in conversation