Hello guys,
I am trying to create a plot where the X-Axis looks similar to the image as shown. i.e. Month on one line and the year on another line.
I am aware of X2Axis option which presents a second X-Axis on the top fo the graph - However, this is something I would want to resort to as last option.
Can you provide me feedback/ tips/ options on how to go about solving this?
Thanks
You really should post it at ODS Graphic forum. How about this one ? data have; set sashelp.air; year=year(date); month=month(date); if year=1960 and month in (2 4 8 10 12) then delete; if year in (1958 1959 1960); format month z2.; run; proc sgpanel data=have ; panelby year/ layout=columnlattice noborder onepanel uniscale=row proportional colheaderpos=bottom novarname nowall ; series x=month y=air/ break; colaxis integer label=' '; run;
Here is a very simliar question:
https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/3-Y-Axis/td-p/312361
Also, Sanjay's blog is a great resource for graphs:
You really should post it at ODS Graphic forum. How about this one ? data have; set sashelp.air; year=year(date); month=month(date); if year=1960 and month in (2 4 8 10 12) then delete; if year in (1958 1959 1960); format month z2.; run; proc sgpanel data=have ; panelby year/ layout=columnlattice noborder onepanel uniscale=row proportional colheaderpos=bottom novarname nowall ; series x=month y=air/ break; colaxis integer label=' '; run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.