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.