<?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 output my HCC p-values in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/output-my-HCC-p-values/m-p/260990#M13799</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using PROC REG I have managed to produce standard errors that are adjusted for heteroskedasticity using the HCC option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However I don't know how to output the HCC adjusted t-stats to a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my basic code which only prints the HCC adjusted t-stats, however I need a table so I can do some summary stats by month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=WORK.QUERY_FOR_CHARACTERISTICS_BY_LXI outest=CrossSectCharacter ADJRSQ TABLEOUT;&lt;BR /&gt;model Prop_B_A100_Mean = Min_Rating_Mean Age_Mean lnInitialAmt_Mean / hcc; &lt;BR /&gt;by YearMonth;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Essentially I need to add an option after the outest command.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is very much appreciated!&lt;/P&gt;</description>
    <pubDate>Mon, 04 Apr 2016 06:04:34 GMT</pubDate>
    <dc:creator>shiller</dc:creator>
    <dc:date>2016-04-04T06:04:34Z</dc:date>
    <item>
      <title>output my HCC p-values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/output-my-HCC-p-values/m-p/260990#M13799</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using PROC REG I have managed to produce standard errors that are adjusted for heteroskedasticity using the HCC option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However I don't know how to output the HCC adjusted t-stats to a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my basic code which only prints the HCC adjusted t-stats, however I need a table so I can do some summary stats by month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=WORK.QUERY_FOR_CHARACTERISTICS_BY_LXI outest=CrossSectCharacter ADJRSQ TABLEOUT;&lt;BR /&gt;model Prop_B_A100_Mean = Min_Rating_Mean Age_Mean lnInitialAmt_Mean / hcc; &lt;BR /&gt;by YearMonth;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Essentially I need to add an option after the outest command.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is very much appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 06:04:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/output-my-HCC-p-values/m-p/260990#M13799</guid>
      <dc:creator>shiller</dc:creator>
      <dc:date>2016-04-04T06:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: output my HCC p-values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/output-my-HCC-p-values/m-p/261004#M13801</link>
      <description>&lt;PRE&gt;
First, use 

ods trace on;
proc reg...........
ods trace off;


to find the table name you want to output ,then 
(ParamEst is the table name you want to output)

ods output ParamEst=want;
proc reg .........


&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Apr 2016 08:01:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/output-my-HCC-p-values/m-p/261004#M13801</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-04-04T08:01:53Z</dc:date>
    </item>
  </channel>
</rss>

