<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Proc SGPLOT double Xaxis in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316744#M21332</link>
    <description>&lt;P&gt;Hello guys,&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;Can you provide me feedback/ tips/ options&amp;nbsp;on how to go about solving this?&lt;/P&gt;
&lt;P&gt;Thanks&lt;IMG title="Capture.PNG" alt="Capture.PNG" src="https://communities.sas.com/t5/image/serverpage/image-id/6224i6F6DE8A744472492/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2016 15:51:50 GMT</pubDate>
    <dc:creator>sebster24</dc:creator>
    <dc:date>2016-12-05T15:51:50Z</dc:date>
    <item>
      <title>Proc SGPLOT double Xaxis</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316744#M21332</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;Can you provide me feedback/ tips/ options&amp;nbsp;on how to go about solving this?&lt;/P&gt;
&lt;P&gt;Thanks&lt;IMG title="Capture.PNG" alt="Capture.PNG" src="https://communities.sas.com/t5/image/serverpage/image-id/6224i6F6DE8A744472492/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 15:51:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316744#M21332</guid>
      <dc:creator>sebster24</dc:creator>
      <dc:date>2016-12-05T15:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SGPLOT double Xaxis</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316750#M21333</link>
      <description>&lt;P&gt;Here is a very simliar question:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/3-Y-Axis/td-p/312361" target="_blank"&gt;https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/3-Y-Axis/td-p/312361&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, Sanjay's blog is a great resource for graphs:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 16:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316750#M21333</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-12-05T16:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SGPLOT double Xaxis</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316925#M21340</link>
      <description>&lt;PRE&gt;
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;

&lt;/PRE&gt;</description>
      <pubDate>Tue, 06 Dec 2016 04:22:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-SGPLOT-double-Xaxis/m-p/316925#M21340</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-06T04:22:52Z</dc:date>
    </item>
  </channel>
</rss>

