Having a graph with bars for every month over a 4 year period there's too many values on the x-axis (sas dates) so i want to decrease the number of values on the x axis but still showing all bars on the charts. I tried this one in a proc template. But i still get alle months shown on the x-axis. Is there a way of doing it?
layout overlay / xaxisopts=( label=('Status måned')
griddisplay=on linearopts=( tickvaluelist=('01JAN2018'd '01JAN2019'd '01JAN2020'd '01JAN2021'd))
)
Please show your full code,and paste it using the appropriate icon.
One way:
proc sgplot data=SASHELP.CITIDAY;
where DATE<'03JAN1988'd;
vbarparm category=DATE response=DSIJPND ;
xaxis values=('01JAN1988'd '02JAN1988'd '03JAN1988'd ) valuesdisplay=('01Jan' ' ' '01Feb' ) ;
run ;
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!
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.