<?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: Boxplot Statement in SAS GTL and the output data set in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234638#M8519</link>
    <description>&lt;P&gt;Oh wait I got it, you clearlly said "right before the SGRENDER". I had a bit of code between the two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks Dan&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2015 15:29:02 GMT</pubDate>
    <dc:creator>craig159753</dc:creator>
    <dc:date>2015-11-13T15:29:02Z</dc:date>
    <item>
      <title>Boxplot Statement in SAS GTL and the output data set</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234628#M8514</link>
      <description>&lt;P&gt;Hi, so I am producing a box plot in SAS 9.4 using the GTL method. The output works perfectly and all is fine, other than I need a permanent data set. I can see each time the plot runs 3 data sets get produced, one of which contains the summary statistics, such as the mean, median, etc. I need this data sets stored permenantly, however it seems the name of&amp;nbsp;this&amp;nbsp;data set are very random, is there a way to determine or define the datasets name, so i can store the summary data set. Currenlty it is called&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;_DOCTMP000000000000000000000000000564&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which isnt much use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 15:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234628#M8514</guid>
      <dc:creator>craig159753</dc:creator>
      <dc:date>2015-11-13T15:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot Statement in SAS GTL and the output data set</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234629#M8515</link>
      <description>&lt;P&gt;I'm assuming you are writing the GTL and using PROC SGRENDER to render the template with your data. The best way to get the computed data is to use the ODS OUTPUT statement right before the PROC SGRENDER invocation. Assuming you want a data set called "boxdata.sas7bdat":&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output sgrender=boxdata;&lt;/P&gt;
&lt;P&gt;proc sgrender data=whatever template=boxtmpl; run;&lt;/P&gt;
&lt;P&gt;proc print data=boxdata; run; /* in case you want to see it in table output */&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use a libname other than the default "work" to store it permanently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 15:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234629#M8515</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2015-11-13T15:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot Statement in SAS GTL and the output data set</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234635#M8518</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing close; &lt;BR /&gt;ods rtf file = "&amp;amp;figure.\&amp;amp;outname..rtf" style = tfl headery=800 footery=345 author="&amp;amp;sysuserid"; 
ods graphics / reset imagefmt = png; 
ods output sgrender = boxdata;&lt;BR /&gt;&lt;BR /&gt;    proc sgrender&lt;BR /&gt;        data = adlb (where = (paramn = &amp;amp;i.))&lt;BR /&gt;        template = layoutoverlay;&lt;BR /&gt;        ** Define the dynamic labels;&lt;BR /&gt;        dynamic xlabel = "Visit"&lt;BR /&gt;        ylabel = "&amp;amp;param.";&lt;BR /&gt;    run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi Dan, thanks for your suggestion, yes am using GTL and PROC SGRENDER. It looks like what you are trying to say is what I want, above is my new code, when I run it I am met with a warining:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WARNING: Output 'sgrender' was not created. Make sure that the output object name, label, or path is spelled &lt;BR /&gt; correctly. Also, verify that the appropriate procedure options are used to produce the requested &lt;BR /&gt; output object. For example, verify that the NOPRINT option is not used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running SAS EG&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 15:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234635#M8518</guid>
      <dc:creator>craig159753</dc:creator>
      <dc:date>2015-11-13T15:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot Statement in SAS GTL and the output data set</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234638#M8519</link>
      <description>&lt;P&gt;Oh wait I got it, you clearlly said "right before the SGRENDER". I had a bit of code between the two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks Dan&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 15:29:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Boxplot-Statement-in-SAS-GTL-and-the-output-data-set/m-p/234638#M8519</guid>
      <dc:creator>craig159753</dc:creator>
      <dc:date>2015-11-13T15:29:02Z</dc:date>
    </item>
  </channel>
</rss>

