BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Abishekaa
Obsidian | Level 7

Hi all, Appreciate your advice on this. I want to display my percentages rounded to a whole number. Is there a possibility to do that in the proc spgpie step.Below is my code:

proc sgpie data=ab noautolegend
 	dattrmap=attrmap;
 	pie var1 / 
 	datalabelloc=inside datalabeldisplay=(response percent ) datalabelattrs=(size=25 family='Calibri' weight=bold)
startangle=90 attrid=myid ;
by ID;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

The only way to do this currently is to NOT show the pie percentage label, but instead send the percentages to the pie via the RESPONSE column and use the STATFMT option to set a PERCENT format with no decimal places.

 

Hope this helps!

Dan

View solution in original post

4 REPLIES 4
sbxkoenk
SAS Super FREQ

Moved your post to Graphics Programming board !

 

Is this post of any help to you?

holevalue of sgpie format
https://communities.sas.com/t5/SAS-Enterprise-Guide/holevalue-of-sgpie-format/m-p/770252#M39597

 

Koen

 

DanH_sas
SAS Super FREQ

The only way to do this currently is to NOT show the pie percentage label, but instead send the percentages to the pie via the RESPONSE column and use the STATFMT option to set a PERCENT format with no decimal places.

 

Hope this helps!

Dan

Abishekaa
Obsidian | Level 7

Thank you, Dan! Does this mean we have to calculate the percentages in a prior step before the pie chart?

DanH_sas
SAS Super FREQ

Yes, you would need to precompute each slice as a percent of total to use this approach.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 825 views
  • 4 likes
  • 3 in conversation