Hello,
I'm using monthly data for 16 years. When I use the command SGPLOT. The horizontal axis is very crowded and cannot be read. Is there any way to make the horizontal axis readable?
ThankYou.
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin;
run;
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin;
run;
Thank you for your help.
Hello,
Can I ask one more question about SGPLOT? If I'd like to show only January of each year on the X-Axis, how could I do that?
Thank You.
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin values=('01jan1950'd to '01jan1958'd by year)
valuesformat=date9.;
run;
Thank You.
You might also want to examine what happens if change the FORMAT for your YEAR variable. Such as
proc sgplot data=sashelp.air ; series x=date y=air ; format date year4.; run; /* or */ proc sgplot data=sashelp.air ; series x=date y=air ; format date yyq6. ; run;
Thank You.
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.