<?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: Any options to output robust standard error? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186601#M303892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved, thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Apr 2014 04:39:11 GMT</pubDate>
    <dc:creator>Jonate_H</dc:creator>
    <dc:date>2014-04-20T04:39:11Z</dc:date>
    <item>
      <title>Any options to output robust standard error?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186597#M303888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I run the following regression&amp;nbsp; with heteroscedasticity test.&lt;/P&gt;&lt;P&gt;The 'tableout' option only output normal standard error to 'want'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Is there any other option to make it also output the white error?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc reg data=have outest=want tableout;&lt;/P&gt;&lt;P&gt;model y = x1 x2 / spec white;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2）When I use ODS to save HTML outputs (SAS 9.3), charts for "fit diagnostics for dependant variable" and "residual by regressors for dependant variable" will no longe be available. Do I need to add other options to make those charts available in the html file which I save to the local driver?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: monospace; font-size: small; background-color: #ffffff;"&gt;ods html file='c:\research\reg_out.html';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc reg data=have outest=want tableout;&lt;/P&gt;&lt;P&gt;model y = x1 x2 / spec white;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you again as always!&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 02:14:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186597#M303888</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-04-20T02:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Any options to output robust standard error?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186598#M303889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any tabular output can be directed to a dataset with ODS OUTPUT statements. The table names (such as SpecTest in this case) are listed in the Details section of the procedure documentation.&lt;/P&gt;&lt;P&gt;Add statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods output SpecTest=mySpecTest;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before the run statement. Dataset mySpecTest will contain the test results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 02:39:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186598#M303889</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-04-20T02:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Any options to output robust standard error?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186599#M303890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, PG!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 03:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186599#M303890</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-04-20T03:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Any options to output robust standard error?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186600#M303891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For question 2, try this instead :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="color: #000000; font-size: small; font-style: inherit; font-family: monospace;"&gt;ods html path='&lt;SPAN style="color: #000000; font-family: monospace; font-size: small; background-color: #ffffff;"&gt;c:\research&lt;/SPAN&gt;' file='reg_out.html';&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;proc reg data=have outest=want tableout;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;model y = x1 x2 / spec white;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;ods html close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 04:09:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186600#M303891</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-04-20T04:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Any options to output robust standard error?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186601#M303892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved, thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 04:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Any-options-to-output-robust-standard-error/m-p/186601#M303892</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-04-20T04:39:11Z</dc:date>
    </item>
  </channel>
</rss>

