<?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 Proc GENMOD  Class question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-GENMOD-Class-question/m-p/307921#M66006</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know if there is a way that I can elimnate refrence option in class statement using genmod procedure?&lt;/P&gt;&lt;P&gt;Because when I run my model, it gives me the last category of each variable in the class as a reference to that variable.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Oct 2016 14:42:27 GMT</pubDate>
    <dc:creator>fayez61</dc:creator>
    <dc:date>2016-10-28T14:42:27Z</dc:date>
    <item>
      <title>Proc GENMOD  Class question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-GENMOD-Class-question/m-p/307921#M66006</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know if there is a way that I can elimnate refrence option in class statement using genmod procedure?&lt;/P&gt;&lt;P&gt;Because when I run my model, it gives me the last category of each variable in the class as a reference to that variable.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 14:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-GENMOD-Class-question/m-p/307921#M66006</guid>
      <dc:creator>fayez61</dc:creator>
      <dc:date>2016-10-28T14:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  Class question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-GENMOD-Class-question/m-p/308775#M66306</link>
      <description>&lt;P&gt;There are multiple ways to paramaterize class variables. You can change the paramaterization in the CLASS statement with the PARAM option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;e.g.:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GENMOD data=data;
     class treatment / param=X;
     model outcome = treatment;
run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;where X is any of the options detailed here (e.g. ref, effect, glm, etc.). The default is the glm parameterization:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_genmod_sect033.htm" target="_self"&gt;PROC GENMOD: CLASS Variable Parameterization&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also use the REF option to specify the reference level.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;e.g.:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GENMOD data=data;
     class treatment(ref='Control');
     model outcome = treatment;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Nov 2016 15:53:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-GENMOD-Class-question/m-p/308775#M66306</guid>
      <dc:creator>RyanSimmons</dc:creator>
      <dc:date>2016-11-02T15:53:13Z</dc:date>
    </item>
  </channel>
</rss>

