<?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: Question About Default Means Separation in PROC GLIMMIX in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952707#M47668</link>
    <description>&lt;P&gt;I am still new to running everything with this software, in your opinion would there ever be a reason to run the code i typed without entering a diff or adjust parameter?&lt;/P&gt;</description>
    <pubDate>Fri, 06 Dec 2024 04:10:25 GMT</pubDate>
    <dc:creator>jbibb14</dc:creator>
    <dc:date>2024-12-06T04:10:25Z</dc:date>
    <item>
      <title>Question About Default Means Separation in PROC GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952704#M47665</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out what the default separation method is when I run this PROC Glimmix code. Usually I specify it to run Tukey, but when I remove that specification from my code I wanted to know what method is the default that runs?&lt;/P&gt;&lt;P&gt;Code Example Below:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc glimmix data=crapes;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;class trt rep color;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;model arl = color trt color*trt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;random rep;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;lsmeans color trt color*trt/diff lines;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;run; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;quit;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Typically in the lsmeans line I have &lt;EM&gt;adjust=tukey&lt;/EM&gt;, but as I stated I am curious as to what program runs the means separation when that statement is removed and it runs as typed above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA!&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 03:47:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952704#M47665</guid>
      <dc:creator>jbibb14</dc:creator>
      <dc:date>2024-12-06T03:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Question About Default Means Separation in PROC GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952706#M47667</link>
      <description>&lt;P&gt;This is covered in the description of the DIFF option in the documentation of the LSMEANS statement. By default, the DIFF option produces all possible pairwise comparisons of the LS-means without any adjustment using simple t-tests. You can specify optional values after DIFF= to request differences with the average LS-mean or differences with a control level. If you want mean comparisons to be adjusted, specify the ADJUST= option with one of the available methods.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 04:03:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952706#M47667</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-12-06T04:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Question About Default Means Separation in PROC GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952707#M47668</link>
      <description>&lt;P&gt;I am still new to running everything with this software, in your opinion would there ever be a reason to run the code i typed without entering a diff or adjust parameter?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 04:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952707#M47668</guid>
      <dc:creator>jbibb14</dc:creator>
      <dc:date>2024-12-06T04:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Question About Default Means Separation in PROC GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952717#M47669</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/286911"&gt;@jbibb14&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am still new to running everything with this software, in your opinion would there ever be a reason to run the code i typed without entering a diff or adjust parameter?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, of course you can run the program exactly as you wrote it, without other options. You can use different statistical methods by specifying other options, if you want. There are probably a dozen different ways to compare means that are useful in some situations, as explained in the documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 10:50:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/952717#M47669</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-12-06T10:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Question About Default Means Separation in PROC GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/953133#M47696</link>
      <description>&lt;P&gt;Would there ever be a reason to not include DIFF=method&amp;gt;? Absolutely yes. All of the methods are designed to control type I error (false positives). However, suppose that it is far more important to control type ii error (false negative rate) in whatever field you are working. Then the unadjusted values give a greater ability to declare a difference significant. As an example, suppose you are working on a safety study for a new drug. In that study, it would be much more important to detect a true difference to protect you from declaring the drug "safe" when in fact it causes some change that may indicate a potential safety concern.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 18:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-About-Default-Means-Separation-in-PROC-GLIMMIX/m-p/953133#M47696</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2024-12-10T18:48:18Z</dc:date>
    </item>
  </channel>
</rss>

