<?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: Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951158#M83771</link>
    <description>You could try PROC HPMIXED which is for high performance and big table.</description>
    <pubDate>Tue, 19 Nov 2024 00:39:05 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-11-19T00:39:05Z</dc:date>
    <item>
      <title>Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/950842#M83763</link>
      <description>&lt;P&gt;Hello, I am looking for a procedure which achieves all of the listed: error clustering, year and individual fixed effects with individual fixed effects absorbed (since I have a lot of individuals), and the ability to test linear combinations of variables post-estimation. In Stata, the code would look something like&lt;/P&gt;&lt;P&gt;areg y x1 x2 x3 i.year, absorb(individual) cluster(individual)&lt;/P&gt;&lt;P&gt;lincom x1 x2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the only procedure I am able to find with absorption is glm, which does not support clustering. Alternatives I've considered are genmod, mixed, panel, and surveyreg, but they do not support absorption. Are there any procedures which suit my needs?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 19:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/950842#M83763</guid>
      <dc:creator>oshih14</dc:creator>
      <dc:date>2024-11-14T19:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951145#M83770</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt; Can you help?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 21:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951145#M83770</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-11-18T21:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951158#M83771</link>
      <description>You could try PROC HPMIXED which is for high performance and big table.</description>
      <pubDate>Tue, 19 Nov 2024 00:39:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951158#M83771</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-11-19T00:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951201#M83773</link>
      <description>&lt;P&gt;I do not know the answer. Perhaps&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;or&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/92458"&gt;@StatsMan&lt;/a&gt;&amp;nbsp;might know.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 10:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/951201#M83773</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2024-11-19T10:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Model with Clustering, Absorption, Year/individual fixed effects, and linear combination testing</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/952854#M83793</link>
      <description>&lt;P&gt;The GEE method available in PROC GEE (and GENMOD, but GEE is the recommended procedure) via the REPEATED statement is effectively absorption and clustering. It allows estimation of the effects specified in the MODEL statement adjusted for the repeated (clustered) measurements within subjects and avoids the need to estimate parameters for the individual subjects.&amp;nbsp; Using the example from the Details:Absorption section of the GLM documentation, the following statements produce essentially the same results:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm;
absorb herd cow;
class treatment;
model y = treatment/solution;
run;
proc gee;
class herd cow treatment;
model y=treatment/type3 wald;
repeated subject=cow(herd);
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Dec 2024 17:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Model-with-Clustering-Absorption-Year-individual-fixed-effects/m-p/952854#M83793</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-12-07T17:20:46Z</dc:date>
    </item>
  </channel>
</rss>

