<?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: Regression Output Parameter Estimates in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316547#M17442</link>
    <description>&lt;P&gt;That doesn't make sense. If it's in front of each it should suppress for each. If you have 80-90 proc regs Im going to say you have a very inefficient process and getting the results you want aren't going to be straightforward. &amp;nbsp;For one - the name for each table would need to be unique. It doesn't make sense to have any output with 80-90 regressions. You should capture all in a table since manually reviewing that many results is goimg to be error prone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use close all destinations so you don't get any results but I would suggest redesigning your process. Although it seems tedious my guess is as soon as you need to make a small change you'll get the time back&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This paper may be helpful.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings11/249-2011.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings11/249-2011.pdf&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 04 Dec 2016 05:46:17 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-12-04T05:46:17Z</dc:date>
    <item>
      <title>Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316093#M17425</link>
      <description>&lt;P&gt;Is there a way to limit ODS or PROC Reg output to just the parameter estimats? I'm running several regressions, and each time, SAS prints out a ton of extra information that I don't need. I really only need the first page of each regression output, the parameter estimates, so the regressions are taking an unnecessarly long time to run.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 22:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316093#M17425</guid>
      <dc:creator>amychau</dc:creator>
      <dc:date>2016-12-01T22:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316095#M17426</link>
      <description>&lt;P&gt;Before your proc add the following line to limit the results to the parameter estimates table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS SELECT ParameterEstimates;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 22:28:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316095#M17426</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-12-01T22:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316096#M17427</link>
      <description>&lt;P&gt;Thank you, Reza!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So would my code look like this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ODS SELECT ParameterEstimates;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc reg data= Database;&lt;BR /&gt;TITLE 'Table 1.1 UC Berkeley Total Admission Rates';&lt;BR /&gt;model UCBTotalAR = AvgSAT LCFFPerCapita FundPerCapita Year;&lt;BR /&gt;&lt;BR /&gt;proc reg data= Database;&lt;BR /&gt;TITLE 'Table 1.2 UC Berkeley Total Senior Admission Rates';&lt;BR /&gt;model UCBSeniorAR = AvgSAT LCFFPerCapita FundPerCapita Year;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 22:29:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316096#M17427</guid>
      <dc:creator>amychau</dc:creator>
      <dc:date>2016-12-01T22:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316097#M17428</link>
      <description>&lt;P&gt;Run it and let me know &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 22:31:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316097#M17428</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-12-01T22:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316546#M17441</link>
      <description>&lt;P&gt;Hi Reeza!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help! By using the code you suggested, I was able to limit the output for the first regression to just the parameter estimate; however, when I attempt to run the code including the second regression, the output still prints the graphs. When I put the code in front of both regressions 1 and 2, the output still prints graphs for regression 2. Is there a way to limit output to the parameter estimate for all of my regressions? I have about 80-90 regressions, so I can't print the full report for all of thse.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Dec 2016 05:20:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316546#M17441</guid>
      <dc:creator>amychau</dc:creator>
      <dc:date>2016-12-04T05:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316547#M17442</link>
      <description>&lt;P&gt;That doesn't make sense. If it's in front of each it should suppress for each. If you have 80-90 proc regs Im going to say you have a very inefficient process and getting the results you want aren't going to be straightforward. &amp;nbsp;For one - the name for each table would need to be unique. It doesn't make sense to have any output with 80-90 regressions. You should capture all in a table since manually reviewing that many results is goimg to be error prone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use close all destinations so you don't get any results but I would suggest redesigning your process. Although it seems tedious my guess is as soon as you need to make a small change you'll get the time back&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This paper may be helpful.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings11/249-2011.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings11/249-2011.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Dec 2016 05:46:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/316547#M17442</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-12-04T05:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Output Parameter Estimates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/317503#M17472</link>
      <description>&lt;P&gt;Hi Reeza,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried it again and it actually worked! Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2016 06:21:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Regression-Output-Parameter-Estimates/m-p/317503#M17472</guid>
      <dc:creator>amychau</dc:creator>
      <dc:date>2016-12-08T06:21:59Z</dc:date>
    </item>
  </channel>
</rss>

