<?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: panel regression versus pooled regression in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153334#M964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much. it is very helpfull.&lt;/P&gt;&lt;P&gt;Do you also farmiliar with fama macbeth regression? (meaning how to formulate the procesdure and what &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;are the implications of switching to this regression)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lior&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Dec 2014 18:04:19 GMT</pubDate>
    <dc:creator>lior</dc:creator>
    <dc:date>2014-12-17T18:04:19Z</dc:date>
    <item>
      <title>panel regression versus pooled regression</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153332#M962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I run the following panel regression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff00ff;"&gt;proc panel data=invest.table_regressionfinal ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff00ff;"&gt; id GVKEY DATADATE;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp; model r_tmw=eps_deflate deltaeps_deflate/fixone ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff00ff;"&gt;run; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I want to run the same regression in "pooled" method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone happen to know how&amp;nbsp; to formulate the pooled procedure and what are the implications of&amp;nbsp; switching from panel regression to pooled regression ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Lior&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 08:55:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153332#M962</guid>
      <dc:creator>lior</dc:creator>
      <dc:date>2014-12-17T08:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: panel regression versus pooled regression</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153333#M963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lior, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This link explains the "pooled" regression model.&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/67525/HTML/default/viewer.htm#etsug_panel_details18.htm" title="http://support.sas.com/documentation/cdl/en/etsug/67525/HTML/default/viewer.htm#etsug_panel_details18.htm"&gt;SAS/ETS(R) 13.2 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, pooled regression is just another way of saying that you are assuming no id or time fixed effects.&amp;nbsp; In essence, you are "pooling" the data together and running one big regression and assuming each observation, wrt both time and id are independent.&amp;nbsp; Probably not a realistic assumption. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your model, you would write...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff00ff;"&gt;proc panel data=invest.table_regressionfinal ;&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 style="font-style: inherit; font-family: inherit; color: #ff00ff;"&gt;id GVKEY DATADATE;&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 style="font-style: inherit; font-family: inherit; color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp; model r_tmw=eps_deflate deltaeps_deflate/ pooled neweywest ;&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 style="font-style: inherit; font-family: inherit; color: #ff00ff;"&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;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;You likely would want to do some sort of SE correction using NEWEYWEST or similar on the model statement.&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;Hope this helps. -Ken &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 15:39:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153333#M963</guid>
      <dc:creator>ets_kps</dc:creator>
      <dc:date>2014-12-17T15:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: panel regression versus pooled regression</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153334#M964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much. it is very helpfull.&lt;/P&gt;&lt;P&gt;Do you also farmiliar with fama macbeth regression? (meaning how to formulate the procesdure and what &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;are the implications of switching to this regression)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lior&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 18:04:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/panel-regression-versus-pooled-regression/m-p/153334#M964</guid>
      <dc:creator>lior</dc:creator>
      <dc:date>2014-12-17T18:04:19Z</dc:date>
    </item>
  </channel>
</rss>

