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

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
  • 1 reply
  • 853 views
  • 0 likes
  • 2 in conversation