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.
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.