<?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 how to export statistics results to an external file in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62238#M17709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, it doesn't.&lt;/P&gt;&lt;P&gt;It must the problem with ODS on my sas platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your kindness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Sep 2011 03:10:45 GMT</pubDate>
    <dc:creator>littlestone</dc:creator>
    <dc:date>2011-09-09T03:10:45Z</dc:date>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62232#M17703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing some regression. All statistics result was in ouput window. Is it possible to export all those statistics results to an external file (word, html, or plain text)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 00:59:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62232#M17703</guid>
      <dc:creator>littlestone</dc:creator>
      <dc:date>2011-09-09T00:59:48Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62233#M17704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ODS. Take a look at: &lt;A href="http://www.nesug.org/proceedings/nesug07/po/po22.pdf"&gt;http://www.nesug.org/proceedings/nesug07/po/po22.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 01:05:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62233#M17704</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-09T01:05:24Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62234#M17705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you. I actually tried to read that paper but it is kind of too complicated for me (i never used ODS before).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I just want to output one table, but the code seems to run forever (I waited a long time without any result). where am i wrong ? here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS OUTPUT&amp;nbsp; ASSOCIATION = DATA_ASSOCIATION;&lt;/P&gt;&lt;P&gt;proc logistic data=new descending;&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt;.............. &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ODS OUTPUT CLOSE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS HTML FILE='C:\Exercise\ASSOCIATION.HTML';&lt;/P&gt;&lt;P&gt;proc print data = data_association;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ODS HTML CLOSE;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 02:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62234#M17705</guid>
      <dc:creator>littlestone</dc:creator>
      <dc:date>2011-09-09T02:05:14Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62235#M17706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did the proc logistic run within the expected time?&amp;nbsp; You could have simply stopped there and run your proc print without the additional ods html stuff.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 02:30:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62235#M17706</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-09T02:30:37Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62236#M17707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the logistic regression runs ok.&lt;/P&gt;&lt;P&gt;weird thing is: only after I terminate sas, i got the html file; i tried several times. it might be something wrong with my sas.&lt;/P&gt;&lt;P&gt;anyway, thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 02:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62236#M17707</guid>
      <dc:creator>littlestone</dc:creator>
      <dc:date>2011-09-09T02:41:39Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62237#M17708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've never run logistic.&amp;nbsp; Is it possible that it needs a quit statement at the end?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 02:44:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62237#M17708</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-09T02:44:00Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62238#M17709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, it doesn't.&lt;/P&gt;&lt;P&gt;It must the problem with ODS on my sas platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your kindness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 03:10:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62238#M17709</guid>
      <dc:creator>littlestone</dc:creator>
      <dc:date>2011-09-09T03:10:45Z</dc:date>
    </item>
    <item>
      <title>how to export statistics results to an external file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62239#M17710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in case some one get interested:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested again: the code is working. I waited about 10 minutes before everything is done. when i looked at log, i got following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;110&amp;nbsp; ODS HTML FILE='C:\Exercise\ASSOCIATION.HTML';&lt;/P&gt;&lt;P&gt;NOTE: Writing HTML Body file: C:\Exercise\ASSOCIATION.HTML&lt;/P&gt;&lt;P&gt;111&amp;nbsp; PROC PRINT DATA = DATA_ASSOCIATION;&lt;/P&gt;&lt;P&gt;112&amp;nbsp; RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: There were 4 observations read from the data set WORK.DATA_ASSOCIATION.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.14 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;113&amp;nbsp; ODS HTML CLOSE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know why it takes 10 minutes; maybe my computer is too old :--)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 03:38:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-export-statistics-results-to-an-external-file/m-p/62239#M17710</guid>
      <dc:creator>littlestone</dc:creator>
      <dc:date>2011-09-09T03:38:11Z</dc:date>
    </item>
  </channel>
</rss>

