<?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 Reg title question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300761#M60547</link>
    <description>&lt;P&gt;Since Proc Reg supports the possibility of multiple MODEL statements I don't believe there is an option to suppress that as it would be difficult to interpret the result with multiple models. If you need the output in a document without the model label you might send output to datasets using either the OUTPUT option or ODS&amp;nbsp; and then send that output separately to a document.&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2016 14:19:42 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-09-26T14:19:42Z</dc:date>
    <item>
      <title>Proc Reg title question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300747#M60545</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone know the option to turn off the titles:&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="121"&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Model: MODEL1&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="140"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2" width="261"&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Dependent Variable: valud Follow-up&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which are added automatically from a proc reg:&lt;/P&gt;
&lt;PRE&gt;proc reg data=mydata;
  ods select fitplot;
  model xyz=def;
quit;
&lt;/PRE&gt;
&lt;P&gt;I have setup my titles in 1-3 but this still appears in title7/8.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 13:17:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300747#M60545</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-09-26T13:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Reg title question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300761#M60547</link>
      <description>&lt;P&gt;Since Proc Reg supports the possibility of multiple MODEL statements I don't believe there is an option to suppress that as it would be difficult to interpret the result with multiple models. If you need the output in a document without the model label you might send output to datasets using either the OUTPUT option or ODS&amp;nbsp; and then send that output separately to a document.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 14:19:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300761#M60547</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-26T14:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Reg title question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300770#M60548</link>
      <description>&lt;P&gt;Thanks, I had suspected that would be the answer, but was trying to be lazy. &amp;nbsp;Will sgplot the resulting table from that.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 14:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300770#M60548</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-09-26T14:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Reg title question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300808#M60556</link>
      <description>&lt;P&gt;I tried to find which template would contain the code generating that text but couldn't in about 10 minutes of searching. Creating a replace template for the specific output might work if you can find it.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 16:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300808#M60556</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-26T16:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Reg title question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300813#M60558</link>
      <description>&lt;P&gt;Ah, well that part I do know, its how I will build the sgplot. &amp;nbsp;Turn ods trace on, get the object, then you can run source:&lt;/P&gt;
&lt;PRE&gt;proc template;
   source Stat.Reg.Graphics.Fit;
run;&lt;/PRE&gt;
&lt;P&gt;Is the one for the fit graph. &amp;nbsp;It shows the individual sgplot statements and the options. &amp;nbsp;Just a matter of pulling that apart.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 16:42:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Reg-title-question/m-p/300813#M60558</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-09-26T16:42:09Z</dc:date>
    </item>
  </channel>
</rss>

