<?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 questions about proc glimmix options in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884502#M43826</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hello!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We have data on students who are nested within colleges, and we’re using GLIMMIX to run a multi-level regression model to predict whether or not a student declares a certain major in their first year of college (outcome) based on whether or not they take that subject in high school (main predictor). This is what our GLIMMIX code looks like:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc glimmix data=&amp;amp;dsn &lt;/SPAN&gt;&lt;STRONG&gt;method=laplace&lt;/STRONG&gt;&lt;SPAN&gt; noclprint;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;class &amp;amp;class_var;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model outcome_var (event=’1’) = &amp;amp;ivlist /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cl &lt;/SPAN&gt;&lt;STRONG&gt;dist=binary&lt;/STRONG&gt;&lt;SPAN&gt; link=logit solution oddsratio;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;random intercept / subject=&amp;amp;subject_var type=vc solution cl;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;covtest / wald ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;lsmeans&lt;/STRONG&gt;&lt;SPAN&gt; &amp;amp;lsmeans_var /&lt;/SPAN&gt;&lt;STRONG&gt; bylevel&lt;/STRONG&gt;&lt;SPAN&gt; cl ilink ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;class_var includes a list of categorical covariates with reference groups specified&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;ivlist includes the main predictor and all other covariates&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;subject_var is the college code (second level/grouping variable)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;lsmeans_var includes a list of categorical variables like our main predictor, student’s gender, etc.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We borrowed a majority of the syntax from page 4 of this PDF: &lt;/SPAN&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings15/3430-2015.pdf" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://support.sas.com/resources/papers/proceedings15/3430-2015.pdf&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;. We have a couple of questions about understanding some of these options and whether they are appropriate for our situation:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Is there a reason we should use &lt;/SPAN&gt;&lt;STRONG&gt;method=laplace&lt;/STRONG&gt;&lt;SPAN&gt; rather than the default &lt;/SPAN&gt;&lt;STRONG&gt;method=rspl&lt;/STRONG&gt;&lt;SPAN&gt; in our case?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Should we use &lt;/SPAN&gt;&lt;STRONG&gt;dist=binary&lt;/STRONG&gt;&lt;SPAN&gt; because our outcome variable only has 2 outcomes (majored / didn’t major)? In what case would we use &lt;/SPAN&gt;&lt;STRONG&gt;dist=binomial&lt;/STRONG&gt;&lt;SPAN&gt; instead?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;We used the &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans &lt;/STRONG&gt;&lt;SPAN&gt;statement because we want to get the average predicted probabilities of our outcome for each level of categorical variables in the list lsmeans_var. Does &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans&lt;/STRONG&gt;&lt;SPAN&gt; assume reference values or grand mean values for all the other categorical covariates in the model when calculating marginal means?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;A small percentage of students declare the major, so does that make our sample unbalanced? Does&lt;/SPAN&gt;&lt;STRONG&gt; bylevel&lt;/STRONG&gt;&lt;SPAN&gt; help with this by calculating &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans &lt;/STRONG&gt;&lt;SPAN&gt;for each group separately as opposed to using the entire sample size as the denominator when calculating predicted probabilities of lsmeans_var?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jul 2023 15:54:42 GMT</pubDate>
    <dc:creator>astronomy_tower</dc:creator>
    <dc:date>2023-07-12T15:54:42Z</dc:date>
    <item>
      <title>questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884502#M43826</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We have data on students who are nested within colleges, and we’re using GLIMMIX to run a multi-level regression model to predict whether or not a student declares a certain major in their first year of college (outcome) based on whether or not they take that subject in high school (main predictor). This is what our GLIMMIX code looks like:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc glimmix data=&amp;amp;dsn &lt;/SPAN&gt;&lt;STRONG&gt;method=laplace&lt;/STRONG&gt;&lt;SPAN&gt; noclprint;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;class &amp;amp;class_var;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model outcome_var (event=’1’) = &amp;amp;ivlist /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cl &lt;/SPAN&gt;&lt;STRONG&gt;dist=binary&lt;/STRONG&gt;&lt;SPAN&gt; link=logit solution oddsratio;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;random intercept / subject=&amp;amp;subject_var type=vc solution cl;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;covtest / wald ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;lsmeans&lt;/STRONG&gt;&lt;SPAN&gt; &amp;amp;lsmeans_var /&lt;/SPAN&gt;&lt;STRONG&gt; bylevel&lt;/STRONG&gt;&lt;SPAN&gt; cl ilink ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;class_var includes a list of categorical covariates with reference groups specified&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;ivlist includes the main predictor and all other covariates&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;subject_var is the college code (second level/grouping variable)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;lsmeans_var includes a list of categorical variables like our main predictor, student’s gender, etc.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We borrowed a majority of the syntax from page 4 of this PDF: &lt;/SPAN&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings15/3430-2015.pdf" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://support.sas.com/resources/papers/proceedings15/3430-2015.pdf&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;. We have a couple of questions about understanding some of these options and whether they are appropriate for our situation:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Is there a reason we should use &lt;/SPAN&gt;&lt;STRONG&gt;method=laplace&lt;/STRONG&gt;&lt;SPAN&gt; rather than the default &lt;/SPAN&gt;&lt;STRONG&gt;method=rspl&lt;/STRONG&gt;&lt;SPAN&gt; in our case?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Should we use &lt;/SPAN&gt;&lt;STRONG&gt;dist=binary&lt;/STRONG&gt;&lt;SPAN&gt; because our outcome variable only has 2 outcomes (majored / didn’t major)? In what case would we use &lt;/SPAN&gt;&lt;STRONG&gt;dist=binomial&lt;/STRONG&gt;&lt;SPAN&gt; instead?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;We used the &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans &lt;/STRONG&gt;&lt;SPAN&gt;statement because we want to get the average predicted probabilities of our outcome for each level of categorical variables in the list lsmeans_var. Does &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans&lt;/STRONG&gt;&lt;SPAN&gt; assume reference values or grand mean values for all the other categorical covariates in the model when calculating marginal means?&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;A small percentage of students declare the major, so does that make our sample unbalanced? Does&lt;/SPAN&gt;&lt;STRONG&gt; bylevel&lt;/STRONG&gt;&lt;SPAN&gt; help with this by calculating &lt;/SPAN&gt;&lt;STRONG&gt;lsmeans &lt;/STRONG&gt;&lt;SPAN&gt;for each group separately as opposed to using the entire sample size as the denominator when calculating predicted probabilities of lsmeans_var?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:54:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884502#M43826</guid>
      <dc:creator>astronomy_tower</dc:creator>
      <dc:date>2023-07-12T15:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884722#M43827</link>
      <description>&lt;P&gt;I have moved your post to :&lt;/P&gt;
&lt;P&gt;Home &amp;gt;&amp;gt; Analytics &amp;gt;&amp;gt; Statistical Procedures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I wonder if there's any difference with your other question (questions about proc glimmix code).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 20:58:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884722#M43827</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-13T20:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884802#M43830</link>
      <description>&lt;P&gt;I posted a response yesterday. Not sure why it did not show up. Here it is again --&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;method=laplace&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;is a maximum likelihood estimation method that honors the distribution assumption. &amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;method=rspl&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;is a pesudo-likelihood estimation method that creates a linearized pseudo-response. Both methods have pros and cons. For a binary response variable, a maximum likelihood based estimation method might be less biased. For more information please refer to the documentation below --&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_040/statug/statug_glimmix_details06.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_040/statug/statug_glimmix_details06.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;It is okay to use&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;dist=binary&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;or &lt;STRONG&gt;dist=binomial &lt;/STRONG&gt;in your case. If your response variable is events/trials, then you must usewe use&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;dist=binomial&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;(which is also the default).&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;lsmeans&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;are computed across the average of other covariates in your model. You can add the E option in the LSMEANS statement to see exactly how it is computed.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;By default, LSMEANS are computed over a balanced population. So each level in the group receives the same "fractions" regardless of the sample size in the group. the BYLEVEL option changes the "fractions" based on the group sample size. Again, you can add the E option in the LSMENAS statement to see exactly how that affects the computation of the LSMEANS for your data.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jill&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 13:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884802#M43830</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2023-07-14T13:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884808#M43832</link>
      <description>&lt;P&gt;Your response did show up,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60873"&gt;@jiltao&lt;/a&gt;&amp;nbsp;. This is a near-duplicate post.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 14:08:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884808#M43832</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2023-07-14T14:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884822#M43834</link>
      <description>&lt;P&gt;Dear Jill,&lt;/P&gt;&lt;P&gt;Thank you so much, this is very helpful!!&lt;/P&gt;&lt;P&gt;I apologize for making two posts, it's my first time posting and I thought it will be better to post on two sub-forums instead of just one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 16:05:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884822#M43834</guid>
      <dc:creator>astronomy_tower</dc:creator>
      <dc:date>2023-07-14T16:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: questions about proc glimmix options</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884826#M43835</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/445940"&gt;@astronomy_tower&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I apologize for making two posts, it's my first time posting and I thought it will be better to post on two sub-forums instead of just one.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Look in this sub-forum&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;BR /&gt;Home &amp;gt;&amp;gt; Welcome &amp;gt;&amp;gt; Getting Started&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at this post by a Community Manager&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Community etiquette: The do’s and don’ts of the SAS Support Communities&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Getting-Started/Community-etiquette-The-do-s-and-don-ts-of-the-SAS-Support/ta-p/224384" target="_blank"&gt;https://communities.sas.com/t5/Getting-Started/Community-etiquette-The-do-s-and-don-ts-of-the-SAS-Support/ta-p/224384&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It says (among other things):&lt;BR /&gt;&lt;STRONG&gt;Post your question once&lt;/STRONG&gt;, in the appropriate forum. Multiple instances of the same question dilutes the answers and causes confusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;And welcome to the Communities!&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 16:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/questions-about-proc-glimmix-options/m-p/884826#M43835</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-14T16:03:55Z</dc:date>
    </item>
  </channel>
</rss>

