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

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 975 views
  • 0 likes
  • 2 in conversation