BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Golf
Pyrite | Level 9

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.

question.png

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin;
run;

View solution in original post

7 REPLIES 7
Ksharp
Super User
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin;
run;
Golf
Pyrite | Level 9

Thank you for your help.

Golf
Pyrite | Level 9

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.

Ksharp
Super User
proc sgplot data=sashelp.air ;
series x=date y=air ;
xaxis fitpolicy=thin values=('01jan1950'd to '01jan1958'd by year)
valuesformat=date9.;
run;
Golf
Pyrite | Level 9

Thank You.

ballardw
Super User

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;
Golf
Pyrite | Level 9

Thank You.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 7 replies
  • 1042 views
  • 3 likes
  • 3 in conversation