BookmarkSubscribeRSS Feed
jteres
Obsidian | Level 7

rIs it possible to control the xaxis (category axis) when using VBAR in the SG procedures? I have 40 months and want to show stacked bars where each bar height is a population and the stacks are comprised of population subcategories.

The issue is that the xaxis is unreadable. None of the xaxis options for time values are effective with VBAR.

Can I get around this with GTL? It's proving to be an enormous time sink, and I don't think that having a bar chart with time as the xaxis is that unreasonable a thing to try to do...

Thanks,

Jed

2 REPLIES 2
snoopy369
Barite | Level 11

Assuming I understand the problem you have with the xaxis, I would use a format (either a built in format or a custom one) to display the date variables as you need.  For example:

data sale;
set sashelp.prdsale;
format month MONYY7.;
run;

proc sgplot data=sale;
vbar month/response=actual group=product groupdisplay=stack;
run;

If that doesn't work for you, more detail would be helpful in terms of what you want to see on the x axis.

DanH_sas
SAS Super FREQ

If the problem is too many tick values, you can can specify FITPOLICY=THIN on the XAXIS statement to help with that.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 2 replies
  • 2270 views
  • 1 like
  • 3 in conversation