<?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: Macro for pairwise comparisons connecting letter with PROC MIXED in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941510#M369368</link>
    <description>&lt;P&gt;Yes, I'm trying to find a macro like that but for PROC MIXED. According to the paper that macro only works with PROC GLIMMIX and I have to use PROC MIXED since I have repeating measures.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2024 17:07:56 GMT</pubDate>
    <dc:creator>Mccracken</dc:creator>
    <dc:date>2024-08-28T17:07:56Z</dc:date>
    <item>
      <title>Macro for pairwise comparisons connecting letter with PROC MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941492#M369361</link>
      <description>&lt;P&gt;I have biomarker data from a group of subjects repeatedly sampled over time. I'm using PROC MIXED for the model, and Tukeys as a post hoc. How would I generate a connecting letters report from the Differences of Least Squares Means? I've seen macros for PROC GLIMMIX like %MULTI, and connecting lines. Does anyone know of a macro or script that will work with PROC MIXED instead?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc mixed data=data;
class age sex tp name;
model biomarker = age sex age*sex;
repeated  TP /  type=CSH r rcorr subject= name;
LSMEANS age / pdiff adjust=TUKEY;
LSMEANS age*sex / pdiff adjust=TUKEY;
LSMEANS sex / pdiff adjust=TUKEY;
run;&lt;/PRE&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Week&lt;/TD&gt;&lt;TD&gt;Weight&lt;/TD&gt;&lt;TD&gt;Connecting Letter&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;28.8693&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;30.959&lt;/TD&gt;&lt;TD&gt;AB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;33.7827&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;40.0923&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 28 Aug 2024 16:27:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941492#M369361</guid>
      <dc:creator>Mccracken</dc:creator>
      <dc:date>2024-08-28T16:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for pairwise comparisons connecting letter with PROC MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941509#M369367</link>
      <description>&lt;P&gt;You favorite internet search engine will find this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://agrobiol.sggw.waw.pl/~cbcs/articles/CBCS_7_1_2.pdf" target="_self"&gt;A SAS macro for generating letter displays of pairwise mean ...&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know if it matches your problem as my company's firewall won't let me access it.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 17:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941509#M369367</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-08-28T17:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for pairwise comparisons connecting letter with PROC MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941510#M369368</link>
      <description>&lt;P&gt;Yes, I'm trying to find a macro like that but for PROC MIXED. According to the paper that macro only works with PROC GLIMMIX and I have to use PROC MIXED since I have repeating measures.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 17:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941510#M369368</guid>
      <dc:creator>Mccracken</dc:creator>
      <dc:date>2024-08-28T17:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Macro for pairwise comparisons connecting letter with PROC MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941519#M369370</link>
      <description>&lt;P&gt;PROC MIXED plus PROC PLM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/how-to-get-pdmix800-sas-for-letter-displays-of-pairwise-mean/m-p/83560#M4023" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/how-to-get-pdmix800-sas-for-letter-displays-of-pairwise-mean/m-p/83560#M4023&lt;/A&gt;&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 17:16:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-for-pairwise-comparisons-connecting-letter-with-PROC-MIXED/m-p/941519#M369370</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-08-28T17:16:40Z</dc:date>
    </item>
  </channel>
</rss>

