BookmarkSubscribeRSS Feed
deleted_user
Not applicable
My x-axis has ".0%" instead of "0%".
Does anyone know how to change this?

proc gchart data=q5 anno=anno_labels;
hbar bu1 / discrete
nostats
type=sum sumvar=percent1
group=q5
patternid=group
freq
format percent1 percent5.2;
run;
1 REPLY 1
GraphGuy
Meteorite | Level 14
How about something like this (specifying a percent format with no decimal places)...


data foo;
x=1; y=0; output;
x=2; y=.1; output;
run;

symbol1 v=dot i=join;
proc gplot data=foo;
format y percent5.0;
plot y*x;
run;

Message was edited by: Robert Allison @ SAS Message was edited by: Robert Allison @ SAS

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 738 views
  • 0 likes
  • 2 in conversation