<?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 Re: 4 Graphs per Page by passing variables in a Loop. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105846#M3907</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;There are various ways you can accomplish this. It depends on what version of SAS you use.&lt;/P&gt;&lt;P&gt;If you have SAS 9.2 or higher, you could use PROC TEMPLATE with PROC SGRENDER to accomplish the plots.&lt;/P&gt;&lt;P&gt;You could use the older graphic PROCs (PROC GPLOT, PROC Boxplot...PROC GCHART) in combination with PROC GREPLAY to get several plots in one panel....&lt;/P&gt;&lt;P&gt;So, more detail of what you need would be awesome.&lt;/P&gt;&lt;P&gt;Some sample data, and we can help!&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;Anca.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Oct 2013 11:04:46 GMT</pubDate>
    <dc:creator>AncaTilea</dc:creator>
    <dc:date>2013-10-08T11:04:46Z</dc:date>
    <item>
      <title>4 Graphs per Page by passing variables in a Loop.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105845#M3906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create 4 graphs(1 graph per each variable) per page&amp;nbsp; and 5-8 graphs going to next page..etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you let me know hoe to proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 02:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105845#M3906</guid>
      <dc:creator>venu166</dc:creator>
      <dc:date>2013-10-08T02:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Graphs per Page by passing variables in a Loop.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105846#M3907</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;There are various ways you can accomplish this. It depends on what version of SAS you use.&lt;/P&gt;&lt;P&gt;If you have SAS 9.2 or higher, you could use PROC TEMPLATE with PROC SGRENDER to accomplish the plots.&lt;/P&gt;&lt;P&gt;You could use the older graphic PROCs (PROC GPLOT, PROC Boxplot...PROC GCHART) in combination with PROC GREPLAY to get several plots in one panel....&lt;/P&gt;&lt;P&gt;So, more detail of what you need would be awesome.&lt;/P&gt;&lt;P&gt;Some sample data, and we can help!&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;Anca.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 11:04:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105846#M3907</guid>
      <dc:creator>AncaTilea</dc:creator>
      <dc:date>2013-10-08T11:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Graphs per Page by passing variables in a Loop.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105847#M3908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might also get away with something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods graphics&amp;nbsp; / noborder width=6in height=6in;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sgscatter data=myData;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; plot (v1--v4)*time / columns=2;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sgscatter data=myData;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; plot (v5--v8)*time / columns=2;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Anca said, example data will get you more precise help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 02:47:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/4-Graphs-per-Page-by-passing-variables-in-a-Loop/m-p/105847#M3908</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-10-09T02:47:23Z</dc:date>
    </item>
  </channel>
</rss>

