<?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: Exporting student panel graphs to RTF in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250241#M9072</link>
    <description>&lt;P&gt;AFAIK that would be the easiest method, but the SAS guru's may have another solution to direct the output to specific files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2016 05:23:46 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-02-16T05:23:46Z</dc:date>
    <item>
      <title>Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250233#M9069</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am running PROC GLIMMIX for a number of response variables (using a BY statement) and would like to save just the StudentPanel graphs of each of the BY run in one RTF file. Is this possible in SAS? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 03:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250233#M9069</guid>
      <dc:creator>JulieM</dc:creator>
      <dc:date>2016-02-16T03:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250236#M9070</link>
      <description>&lt;P&gt;Sure can.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use ODS SELECT to find the name of the graph, I'm going to assume it's STUDENTPANEL in this example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file='C:\temp\want.rtf' style=statistical;

ods select StudentPanel;
proc Glimmix ...

run;
ods select all;

ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Feb 2016 03:39:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250236#M9070</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-16T03:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250240#M9071</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But does this mean that&amp;nbsp;if&amp;nbsp;I want to save model results of all runs in one file (e.g., fit statistics, test of fixed effects) and studentpanel graphs of all runs in another file, I would have to run Proc GLIMMIX twice?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file ="M:\model.rtf";

ODS EXCLUDE Classlevels LSMeans;
Proc GLIMMIX data=pheno;
by response;&lt;BR /&gt;
run;

ods select all;
ods rtf close;

ods rtf file ="M:\panels.rtf";
ods select studentpanel;
proc GLIMMIX data=pheno plots=studentpanel;
by response;&lt;BR /&gt;
run;

ods select all;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Feb 2016 05:14:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250240#M9071</guid>
      <dc:creator>JulieM</dc:creator>
      <dc:date>2016-02-16T05:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250241#M9072</link>
      <description>&lt;P&gt;AFAIK that would be the easiest method, but the SAS guru's may have another solution to direct the output to specific files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 05:23:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250241#M9072</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-16T05:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250243#M9074</link>
      <description>&lt;P&gt;It looks like you can create the destinations with an ID and then control the output to each RTF file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf (id=1) file='/folders/myfolders/want1.rtf' style=journal;
ods rtf (id=2) file='/folders/myfolders/want2.rtf' style=journal;

ods rtf (id=1) select ResidualPlot;
ods rtf (id=2) select parameterEstimates;

proc reg data=sashelp.class;
model weight=age height;
run;
ods select all;

ods rtf (id=1) close;
ods rtf (id=2) close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Feb 2016 05:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250243#M9074</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-16T05:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting student panel graphs to RTF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250245#M9075</link>
      <description>&lt;P&gt;Perfect!&lt;/P&gt;&lt;P&gt;You're an angel!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;(sorry for all the exclamation marks!)&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://communities.sas.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 05:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Exporting-student-panel-graphs-to-RTF/m-p/250245#M9075</guid>
      <dc:creator>JulieM</dc:creator>
      <dc:date>2016-02-16T05:50:51Z</dc:date>
    </item>
  </channel>
</rss>

