<?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: Running Hausman test to compare 2SLS and OLS models in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158358#M8275</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all&amp;nbsp; - got the models to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Feb 2015 21:56:15 GMT</pubDate>
    <dc:creator>DaveatPitt</dc:creator>
    <dc:date>2015-02-11T21:56:15Z</dc:date>
    <item>
      <title>Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158351#M8268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I'm analyzing some data and need to test whether a 2SLS or OLS model is most appropriate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that I need to run the Hausman specification test and the syntax provided in the SAS documentation looks straightforward but I'm not sure how to execute the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data contain a dependent variable Y, a mediator M, and two instruments X and Z, and their interaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the model I'm testing is Y = M + X + Z + X*Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code provided in the SAS help guide under 'Hausman specification test' is provided below. My question is what needs to be inputted. What do y1 and y2 represent below? Does p represent predicted values? I assume interc refers to an interaction term? And what is d2? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc model data=one out=fiml2; endogenous y1 y2; &lt;/P&gt;&lt;P&gt;y1 = py2 * y2 + px1 * x1 + interc; &lt;/P&gt;&lt;P&gt;y2 = py1* y1 + pz1 * z1 + d2; &lt;/P&gt;&lt;P&gt;fit y1 y2 / ols 2sls &lt;SPAN style="background-color: #fcdec0;"&gt;hausman&lt;/SPAN&gt;; &lt;/P&gt;&lt;P&gt;instruments x1 z1; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help and even an example would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Feb 2015 16:25:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158351#M8268</guid>
      <dc:creator>DaveatPitt</dc:creator>
      <dc:date>2015-02-08T16:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158352#M8269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You are using the example from here:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/etsug/67525/HTML/default/viewer.htm#etsug_model_sect145.htm" title="http://support.sas.com/documentation/cdl/en/etsug/67525/HTML/default/viewer.htm#etsug_model_sect145.htm"&gt;SAS/ETS(R) 13.2 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can generate the example data set (one) using this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/onlinedoc/ets/ex_code/132/moded.html" title="http://support.sas.com/documentation/onlinedoc/ets/ex_code/132/moded.html"&gt;SAS/ETS User's Guide Example Programs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;y1, y2 are endogenous variables, x1, z1 are instrumental variables,&amp;nbsp; py1, py2 px1, pz1 d2, inerc are all parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 13:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158352#M8269</guid>
      <dc:creator>gergely_batho</dc:creator>
      <dc:date>2015-02-09T13:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158353#M8270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gergely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for pointing me to the sample data, which is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One other question - how does one modify the syntax for a third variable? For example, what if there were two instrumental variables PLUS their interaction in the model.&amp;nbsp; How would the two lines of the syntax be changed? Does 'interc' capture that? Another way to ask this might be, what if there were 3 instruments, not 2?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the varnames from the syntax above, the model I'm trying to run is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y1 = y2 + x1 +z1 +x1*z1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to modify the syntax to accomplish that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 20:52:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158353#M8270</guid>
      <dc:creator>DaveatPitt</dc:creator>
      <dc:date>2015-02-09T20:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158354#M8271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;When you specify a model in PROC MODEL, you should explicitly use parameters:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Helvetica, sans-serif; background: white;"&gt;y1 = y2par * y2 + x1par * x1 +z1par * z1 + xzpar * x1*z1 + intercept&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;In previous examples interc was the intercept parameter, not the interaction.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I suggest you to read the documentation of PROC MODEL, especially about 2SLS and instrumental variables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;If you want to include the interaction as an instrumental variable, you can create it in an assignment statement, then use it in the &lt;EM&gt;instruments&lt;/EM&gt; statement. (xz=x1*z1; instruments xz;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Do you have only 1 equation?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 22:53:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158354#M8271</guid>
      <dc:creator>gergely_batho</dc:creator>
      <dc:date>2015-02-09T22:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158355#M8272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dave,&lt;/P&gt;&lt;P&gt;It looks like Gergely did a good job at showing you how to specify models in PROC MODEL and how to specify an instrument that represents the interaction between the variables X and Y.&lt;/P&gt;&lt;P&gt;To run the Hausman test for your model you could use something like the following example. In this example M is instrumented using X, Z, and X*Z.&amp;nbsp; In the ouput you should get a Hausman specification test static value of 7.65 with a p-value of 0.0218.&amp;nbsp; Therefore, using a 5% significance level you would have to reject the null hypothesis that the OLS estimater is consistent for this model.&amp;nbsp; I hope this helps.&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;data d;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; call streaminit (1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; do i = 1 to 2000;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; r = rand('normal');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x = r + rand('normal');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; z = r + rand('normal');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m = r + rand('normal');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y =&amp;nbsp; 3*m + 1 + rand('normal');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;proc model data=d;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; y = pm*m + interc;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; xz = x*z;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; instruments x z xz;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;&amp;nbsp;&amp;nbsp; fit y / ols 2sls hausman;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal,monaco;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 20:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158355#M8272</guid>
      <dc:creator>kessler</dc:creator>
      <dc:date>2015-02-10T20:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158356#M8273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to be a bit slow - I'm not that familiar with 2SLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I ran in 2SLS and am now trying to run the Hausman test in PROC model. Even with the guidance on the chain, I still can't get it to work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;Proc&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;SYSLIN&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;= one &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;SLS &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;FIRST&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;Endogenous&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; m ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;Instruments&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; x z x*z;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;Model&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; y= m x*z/ &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;OVERID&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;DW&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;PLOT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;Run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;Dave&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Feb 2015 22:38:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158356#M8273</guid>
      <dc:creator>DaveatPitt</dc:creator>
      <dc:date>2015-02-10T22:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158357#M8274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dave,&lt;/P&gt;&lt;P&gt;To do an equivalent 2SLS estimation to the one I provided earlier using PROC MODEL you could do the following in PROC SYSLIN.&amp;nbsp;&amp;nbsp; The additional DATA step is necesssary because I don't believe PROC SYSLIN supports the 'x*z' syntax used in the code you provided.&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data one;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; set d;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; xz = x*z;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;proc syslin data=one 2sls first; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; endogenous m;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; instruments x z xz;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; model y = m;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 13:09:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158357#M8274</guid>
      <dc:creator>kessler</dc:creator>
      <dc:date>2015-02-11T13:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running Hausman test to compare 2SLS and OLS models</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158358#M8275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all&amp;nbsp; - got the models to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 21:56:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Running-Hausman-test-to-compare-2SLS-and-OLS-models/m-p/158358#M8275</guid>
      <dc:creator>DaveatPitt</dc:creator>
      <dc:date>2015-02-11T21:56:15Z</dc:date>
    </item>
  </channel>
</rss>

