<?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 Wald test for whether the two coefficients are significantly different in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557592#M155457</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two sub-samples, I also run regressions for the two samples separately. For sample1: y=x1+x2; for sample2 y=x1+x2. Now I want to test whether the two coefficients of x1 are significantly different? Should I use Wald test and how to realize it? Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Thu, 09 May 2019 19:49:36 GMT</pubDate>
    <dc:creator>ADou</dc:creator>
    <dc:date>2019-05-09T19:49:36Z</dc:date>
    <item>
      <title>Wald test for whether the two coefficients are significantly different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557592#M155457</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two sub-samples, I also run regressions for the two samples separately. For sample1: y=x1+x2; for sample2 y=x1+x2. Now I want to test whether the two coefficients of x1 are significantly different? Should I use Wald test and how to realize it? Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 19:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557592#M155457</guid>
      <dc:creator>ADou</dc:creator>
      <dc:date>2019-05-09T19:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Wald test for whether the two coefficients are significantly different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557598#M155459</link>
      <description>&lt;P&gt;You create a class variable that indicates subpopulation (if you don't have one already) then fit this model&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model y = subpopulation x1 x2 subpopulation*x1 subpopulation*x2;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If the term for subpopulation*x1 is significant, then this indicates there are different slopes for x1 for each subpopulation.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 20:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557598#M155459</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-05-09T20:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Wald test for whether the two coefficients are significantly different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557600#M155460</link>
      <description>&lt;P&gt;Thank you! Is it Wald test? Can I get wald Chi-square in this way?&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 20:15:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557600#M155460</guid>
      <dc:creator>ADou</dc:creator>
      <dc:date>2019-05-09T20:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Wald test for whether the two coefficients are significantly different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557676#M155508</link>
      <description>&lt;P&gt;In proc GLM, ask for&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model y = subpopulation x1 x2 subpopulation*x1 subpopulation*x2 / solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to see the estimates, their standard errors and the t-statistic tests equivalent to Wald tests.&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2019 03:16:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557676#M155508</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-05-10T03:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Wald test for whether the two coefficients are significantly different</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557725#M155529</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/252730"&gt;@ADou&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you! Is it Wald test? Can I get wald Chi-square in this way?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That depends, are you using PROC LOGISTIC because you have binary Y-values?&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2019 10:50:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wald-test-for-whether-the-two-coefficients-are-significantly/m-p/557725#M155529</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-05-10T10:50:02Z</dc:date>
    </item>
  </channel>
</rss>

