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 ;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.