<?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: proc gplot, proc sgplot and proc print,   all on the same page in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669320#M20208</link>
    <description>I copied and pasted the code in above.&lt;BR /&gt;The two graphs are all the proper size and can easily fit into one page and the DM listing is only one row. If I don't print them all on one page, then it would defeat the purpose of this report.&lt;BR /&gt;I used proc GPLOT, because I find an example of code which draw the kind of graph I need.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Tue, 14 Jul 2020 21:48:04 GMT</pubDate>
    <dc:creator>zimcom</dc:creator>
    <dc:date>2020-07-14T21:48:04Z</dc:date>
    <item>
      <title>proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669309#M20203</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a patient report, in which I used&amp;nbsp;proc gplot (to draw a graph), proc sgplot (to draw another graph) and proc print (to print a listing) of one patient of interest through ODS. The graphs and listing came out fine, but are all on individual page, which is not good and efficient for the data cross checking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question for the community, is it possible to print all the graphs and listing output on one page for one patient? I used a marco to loop through the patient list to get every single patient data printed on one page for effective data review.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 21:18:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669309#M20203</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-14T21:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669315#M20204</link>
      <description>&lt;P&gt;Which ODS destination are you using?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 21:31:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669315#M20204</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-14T21:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669317#M20205</link>
      <description>&lt;P&gt;Ods Destination used? RTF and PDF have different approaches to some of the same appearance elements. A&lt;/P&gt;
&lt;P&gt;ODS destination options in effect? These are likely what is creating one page per graph plus the proc print output.&lt;/P&gt;
&lt;P&gt;Papersize or similar setting or default used to print your documents?&lt;/P&gt;
&lt;P&gt;Size of the graph images? The physical size of graphs may prevent them from fitting on a single page. If your graphs are 5 inches tall and displaying in a document for 10 inch tall paper then margins + space between graphs+the graphs could exceed the space available.&lt;/P&gt;
&lt;P&gt;Size/amount of the proc print output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would strongly consider whether you really need proc GPLOT output as that may complicate some of the possible solutions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may be possible to include the proc print output, depending on volume, in an INSET block of a graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest attaching an example of your output document as that likely will provide answers to many other questions that may need to be answered.&amp;nbsp; And the code used to generate the output for one of these documents as well would likely be a good a idea.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 21:36:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669317#M20205</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-07-14T21:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669318#M20206</link>
      <description>&lt;P&gt;%macro loops;&lt;BR /&gt;%do i=1 %to &amp;amp;cnt;&lt;BR /&gt;data _null_;&lt;BR /&gt;set lst;&lt;BR /&gt;if _n_ = &amp;amp;i then call symput('sub',subject);&lt;BR /&gt;run;&lt;BR /&gt;%put &amp;amp;sub;&lt;BR /&gt;ods pdf file="C:\Users\Documents\plot_&amp;amp;sub..pdf" ;&lt;BR /&gt;&lt;BR /&gt;goptions reset=all hsize=15cm vsize=10cm;&lt;BR /&gt;axis2 order=(0 to 6) minor=none;&lt;BR /&gt;symbol1 interpol=join width=2 color=vligb value=dot height=6;&lt;BR /&gt;symbol2 interpol=join width=2 color=salmon value=dot height=6;&lt;/P&gt;&lt;P&gt;proc gplot data=data1;&lt;BR /&gt;where subject = "&amp;amp;sub";&lt;BR /&gt;by SUBJECT;&lt;BR /&gt;plot a * b/ overlay vaxis=axis2;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=ae;&lt;BR /&gt;format aestdat date7.;&lt;BR /&gt;refline 0 / axis=x lineattrs=(color=black);&lt;BR /&gt;highlow y=aeseq low=aestdy high=aeendy / type=bar group=aesev&lt;BR /&gt;lineattrs=(color=black pattern=solid) barwidth=0.8&lt;BR /&gt;lowlabel=aedecod highcap=highcap attrid=Severity;&lt;BR /&gt;scatter y=aeseq x=aestdat / x2axis markerattrs=(size=0);&lt;BR /&gt;xaxis grid display=(nolabel) offsetmax=0.02;&lt;BR /&gt;x2axis display=(nolabel) offsetmax=0.02 ;&lt;BR /&gt;yaxis grid display=(noticks novalues nolabel);&lt;BR /&gt;where subject = "&amp;amp;sub";&lt;BR /&gt;by SUBJECT;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=dm;&lt;BR /&gt;where subject = "&amp;amp;sub";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;quit;&lt;BR /&gt;%end;&lt;BR /&gt;%mend;&lt;BR /&gt;%loops;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 21:37:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669318#M20206</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-14T21:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669319#M20207</link>
      <description>&lt;P&gt;As stated by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;, there's only so much space on a page, and maybe your output doesn't fit. You can try reducing the margins to squeeze just a little more onto the page, or you can try reducing the size of your graphics and reducing the font size of your PROC PRINT output ... but really, there's only so much you can do before eitehr you are forced to use another page or the graphs and text become so small taht it isn't readable.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 21:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669319#M20207</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-14T21:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669320#M20208</link>
      <description>I copied and pasted the code in above.&lt;BR /&gt;The two graphs are all the proper size and can easily fit into one page and the DM listing is only one row. If I don't print them all on one page, then it would defeat the purpose of this report.&lt;BR /&gt;I used proc GPLOT, because I find an example of code which draw the kind of graph I need.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 14 Jul 2020 21:48:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669320#M20208</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-14T21:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669321#M20209</link>
      <description>I checked the output, the space is not the reason that pushed the 2nd graph onto the next page, the lisitng is only one row, so all of them should fit into one page if there is such a control.&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 14 Jul 2020 21:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669321#M20209</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-14T21:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669324#M20210</link>
      <description>Look at the STARTPAGE options for the ODS destination you're using. That option controls when a new page is started and you can explicitly control it.</description>
      <pubDate>Tue, 14 Jul 2020 22:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669324#M20210</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-14T22:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669328#M20211</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219549"&gt;@zimcom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I checked the output, the space is not the reason that pushed the 2nd graph onto the next page, the lisitng is only one row, so all of them should fit into one page if there is such a control.&lt;BR /&gt;Thanks&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;SAS inserts vertical space between output so you may need to look closer.&lt;/P&gt;
&lt;P&gt;But your example code shows nothing attempting to control spacing.&amp;nbsp; The ODS PDF option STARTPAGE default setting is YES, which places each procedure's output on a separate page. You might try adding&lt;/P&gt;
&lt;P&gt;STARTPAGE=NO to force all of the output to single page. But I still suspect you're going to have to play around with the size of the SGPLOT size. Personally I would move the GPLOT code to SGPLOT and then a single setting with ODS Graphics would set a similar height and width on the page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using the BY Subject to get the By line information as a label you might consider actually using Title statements, which you can control font size and the option GTITLE which makes the title part of the graphic output. I suspect that the space between the BY line and the graph may take up more space then you think.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 22:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669328#M20211</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-07-14T22:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669333#M20212</link>
      <description>If you've never specified the STARTPAGE option the default is each new PROC outputs to a new page. Your code shows no use of the STARTPAGE option. For starters try setting it to never.&lt;BR /&gt;&lt;BR /&gt;ods pdf file="C:\Users\Documents\plot_&amp;amp;sub..pdf" startpage=NEVER ;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/rnd/base/ods/odsprinter/PDF-tips.pdf" target="_blank"&gt;https://support.sas.com/rnd/base/ods/odsprinter/PDF-tips.pdf&lt;/A&gt;</description>
      <pubDate>Tue, 14 Jul 2020 22:44:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669333#M20212</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-14T22:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669451#M20213</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you all, I can't express how much I appreciated your help on this!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 13:48:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669451#M20213</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-15T13:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669456#M20214</link>
      <description>"the GPLOT code to SGPLOT and then a single setting with ODS Graphics would set a similar height and width on the page." This would be ideal, if I can make the two graphs consistent, but I can't find the equivalent code of SGPLOT to draw what I did by using GPLOT, and I am new to SAS graphics procedure.</description>
      <pubDate>Wed, 15 Jul 2020 14:06:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669456#M20214</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-15T14:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669463#M20215</link>
      <description>&lt;P&gt;If you're asking about setting the size on an SG procedure output, use the ODS Graphics statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;odd graphics / width=15cm height=10cm;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Think of this statement as similar to the GOPTIONS statement, from the perspective that global options for ODS&amp;nbsp;&lt;/SPAN&gt;Graphics can be controlled from this statement.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 14:19:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669463#M20215</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-07-15T14:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669471#M20216</link>
      <description>&lt;P&gt;That helps to make the graphs the same size and looks much better.&lt;/P&gt;&lt;P&gt;Can&amp;nbsp;proc sgplot draw the same graph as&amp;nbsp;proc gplot did in my case, if this is possible, then all the graph setting can only be set once, that is what I meant.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 14:29:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669471#M20216</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-15T14:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669501#M20217</link>
      <description>&lt;P&gt;If you're asking if your GPLOT example can be drawn using SGPLOT, the answer is yes. There code would look something &amp;nbsp;like the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=data1;
where subject = "&amp;amp;sub";
by SUBJECT;
yaxis values=(0 to 6);
series x=b y=a / markers lineattrs=(color=vligb thickness=2) markerattrs=(symbol=circlefilled size=6);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jul 2020 15:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669501#M20217</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-07-15T15:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669503#M20218</link>
      <description>&lt;P&gt;BTW, you do not need to use the BY statement, since you are using a WHERE clause.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 15:14:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669503#M20218</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-07-15T15:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669504#M20219</link>
      <description>You don't include data but your GPLOT looks like just a basic SERIES plot? Have you tried a SERIES statement in SGPLOT?</description>
      <pubDate>Wed, 15 Jul 2020 15:18:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669504#M20219</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-15T15:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669508#M20220</link>
      <description>I use the by statement to show the Subject ID on the graph</description>
      <pubDate>Wed, 15 Jul 2020 15:22:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669508#M20220</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-15T15:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot, proc sgplot and proc print,   all on the same page</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669513#M20221</link>
      <description>Thank you so much for your help! I really appreciated it!!</description>
      <pubDate>Wed, 15 Jul 2020 15:27:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-proc-sgplot-and-proc-print-all-on-the-same-page/m-p/669513#M20221</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-15T15:27:36Z</dc:date>
    </item>
  </channel>
</rss>

