Hi,
As the subject indicates, my sas version is 9.2, so the fitpolicy option in the xaxis statment only have the following values: STAGGER,ROTATE,THIN and its combinations, without the split option. Since my values for the axis is a little bit long , running the code below generates an ugly graph. I am wondering if there is any other possible way to display the values on the X axis in mutiline mode? Thanks!
proc sgplot data = Ind_stat;
xaxis type = discrete label = "ind" fitpolicy = staggerrotate display = (noticks);
yaxis label = "# of Customers";
vbar hy/response = n datalabel;
run;
One way with SGPLOT would be to use the HBAR statement instead of VBAR. Then, the long category labels are displayed on the Y axis. Better than slanted labels on the x-axis.
Another way would be to use GCHART procedure, and use the SplitChar option as shown in this example: http://support.sas.com/kb/45/123.html
There are not many options with SAS 9.2. With SAS 9.3 you can use SGAnnotate to replace the tick values with split values. With SAS 9.4, you can get split tick values from the procedure itself.
Hi, Sanjay
Only SAS 9.2 is available in my working computer, I am wondering if there is other potential options, thanks !
One way with SGPLOT would be to use the HBAR statement instead of VBAR. Then, the long category labels are displayed on the Y axis. Better than slanted labels on the x-axis.
Another way would be to use GCHART procedure, and use the SplitChar option as shown in this example: http://support.sas.com/kb/45/123.html
Which solution did you prefer?
Hi, Sanjay
Using Hbar statement in SGPLOT looks a little bit better than VBar statement, but it still looks weird. PROC GCHART solves this problem prefectly in SAS 9.2, thanks for your input.
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!
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.
Ready to level-up your skills? Choose your own adventure.