<?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 Question ?? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-SGPANEL-Question/m-p/192467#M48319</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am learning how to use PROC SGPANEL to plot data from SAS.&amp;nbsp; I would like to fit 9 panels onto one page in the output.&amp;nbsp; The code i have below puts 6 panels onto one page (I guess by default).&amp;nbsp; If I have more than 6 'panelby' values, then SAS puts 2 panels side by side and create however many pages to include the panels.&amp;nbsp; Is there a way for me to specify the number of panels per page?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods html file = 'customers.html' path='.' style=ocean;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=600px height=400px imagename= 'Customer_Count' imagefmt=gif;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title 'Customer Count';&lt;/P&gt;&lt;P&gt;PROC SGPANEL data=customer_data;&lt;/P&gt;&lt;P&gt;PANELBY investor / novarname;&lt;/P&gt;&lt;P&gt;VLINE year / RESPONSE = resp_rate LINEATTRS=graphfit;&lt;/P&gt;&lt;P&gt;COLAXIS FITPOLICY=THIN;&lt;/P&gt;&lt;P&gt;ROWAXIS LABEL="Respponse";&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2014 22:36:14 GMT</pubDate>
    <dc:creator>KevinC_</dc:creator>
    <dc:date>2014-03-04T22:36:14Z</dc:date>
    <item>
      <title>Proc SGPANEL Question ??</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-SGPANEL-Question/m-p/192467#M48319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am learning how to use PROC SGPANEL to plot data from SAS.&amp;nbsp; I would like to fit 9 panels onto one page in the output.&amp;nbsp; The code i have below puts 6 panels onto one page (I guess by default).&amp;nbsp; If I have more than 6 'panelby' values, then SAS puts 2 panels side by side and create however many pages to include the panels.&amp;nbsp; Is there a way for me to specify the number of panels per page?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods html file = 'customers.html' path='.' style=ocean;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=600px height=400px imagename= 'Customer_Count' imagefmt=gif;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title 'Customer Count';&lt;/P&gt;&lt;P&gt;PROC SGPANEL data=customer_data;&lt;/P&gt;&lt;P&gt;PANELBY investor / novarname;&lt;/P&gt;&lt;P&gt;VLINE year / RESPONSE = resp_rate LINEATTRS=graphfit;&lt;/P&gt;&lt;P&gt;COLAXIS FITPOLICY=THIN;&lt;/P&gt;&lt;P&gt;ROWAXIS LABEL="Respponse";&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 22:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-SGPANEL-Question/m-p/192467#M48319</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2014-03-04T22:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SGPANEL Question ??</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-SGPANEL-Question/m-p/192468#M48320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With HTML output I would increase the size of the display area. The 600x400 is pretty small for most of today's monitors and that is part of what is choking your size. Imagefmt=PNG also may give better appearance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The options columns= and Rows=&amp;nbsp; on the Panelby statement is the basic control for appearance. If your data groups exceed the values for row and column then I usually get a new page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally if I need to really control the number and content of each display I use data set option where clauses to restrict each created panel to a desired set of values and make multiple calls to procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your 9 panels example I would start with columns=3 and rows=3 ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 23:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-SGPANEL-Question/m-p/192468#M48320</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-03-04T23:04:52Z</dc:date>
    </item>
  </channel>
</rss>

