<?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 SGPANEL-Line plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115908#M292994</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using PROC SGPANEL to create a Line plot and I don't need parallel Y and X axis. How could it can be avoid?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Apr 2013 17:18:51 GMT</pubDate>
    <dc:creator>p9jain</dc:creator>
    <dc:date>2013-04-22T17:18:51Z</dc:date>
    <item>
      <title>PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115908#M292994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using PROC SGPANEL to create a Line plot and I don't need parallel Y and X axis. How could it can be avoid?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 17:18:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115908#M292994</guid>
      <dc:creator>p9jain</dc:creator>
      <dc:date>2013-04-22T17:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115909#M292995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may be helpful to post the code you are using.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 17:40:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115909#M292995</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-04-22T17:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115910#M292996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the UNISCALE= option on the PANELBY statement.&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/65235/HTML/default/viewer.htm#n0wqazuv6959fnn1fask7mi68lla.htm" title="http://support.sas.com/documentation/cdl/en/grstatproc/65235/HTML/default/viewer.htm#n0wqazuv6959fnn1fask7mi68lla.htm"&gt;SAS(R) 9.3 ODS Graphics: Procedures Guide, Third Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;By default, all of the column axes and row axes are on the same scale, but you can change that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 12:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115910#M292996</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2013-04-23T12:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115911#M292997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I am using below code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PROC SGPANEL data = dummy noautolegend ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PANELBY day / noborder ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SERIES&amp;nbsp; x = T y = C/ LINEATTRS&amp;nbsp;&amp;nbsp; = (COLOR = black PATTERN = 1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SCATTER x = T y = C/ MARKERATTRS = (SYMBOL= circlefilled) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the required output in whihc I have highlighted the Line (I need to remove-black line) in red color.&lt;/P&gt;&lt;P&gt;please let me know if we can get similar output.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10863i53031001C59CD32B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="example521.png" title="example521.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 15:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115911#M292997</guid>
      <dc:creator>p9jain</dc:creator>
      <dc:date>2013-04-23T15:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115912#M292998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry its not working ....Please look in to the my another post included code and required output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 15:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115912#M292998</guid>
      <dc:creator>p9jain</dc:creator>
      <dc:date>2013-04-23T15:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115913#M292999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need both the SERIES and SCATTER statements. Use the MARKERS and MARKERATTRS on the SERIES statement to simplify your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 17:01:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115913#M292999</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2013-04-23T17:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115914#M293000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm still confused. You want to remove the red lines?&amp;nbsp; Are you saying that you want to overlay the two curves on a single plot?&amp;nbsp; If so, use the SGPLOT procedure and the GROUP= option, rather than the SGPANEL procedure:&lt;/P&gt;&lt;P&gt;PROC SGPLOT data = dummy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SERIES&amp;nbsp; x = T y = C / group=day LINEATTRS&amp;nbsp;&amp;nbsp; = (COLOR = black PATTERN = 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markers MARKERATTRS = (SYMBOL= circlefilled) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 17:04:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115914#M293000</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2013-04-23T17:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL-Line plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115915#M293001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to remove black line (red lines are highlighted just for reference to refer black line).&lt;/P&gt;&lt;P&gt;I need side by side plot not overlay plot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 03:50:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SGPANEL-Line-plot/m-p/115915#M293001</guid>
      <dc:creator>p9jain</dc:creator>
      <dc:date>2013-04-24T03:50:29Z</dc:date>
    </item>
  </channel>
</rss>

