<?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 How to access %MULT macro in SAS OnDemand for Academics program? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946660#M47298</link>
    <description>&lt;P&gt;Hi there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I access&amp;nbsp; %MULT macro in SAS OnDemand for Academics? I want to run a repeated-measures linear mixed model and compare the least squares means. However, I am aware that I can do that with multcomp package in R, but have never used it before. Anyone who knows how to, please kindly share the R code as well. I want to run the following code in SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Call %MULT macro for group x Time means */

proc glimmix data=Lentil_groups ;
class factorA Time  rep;
model Yield= factorA|Time / ddfm=kr;
/* Random effects to account for */
random intercept /subject=rep type=ar(1) residual;
lsmeans factorA*Time/pdiff;
%mult(trt=Time, by=factorA);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But it looks like %mult macro is not available in my SAS onDemand program. What are the possible options that I have (to install it or use other alternatives)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Oct 2024 12:45:16 GMT</pubDate>
    <dc:creator>Lyson</dc:creator>
    <dc:date>2024-10-08T12:45:16Z</dc:date>
    <item>
      <title>How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946660#M47298</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I access&amp;nbsp; %MULT macro in SAS OnDemand for Academics? I want to run a repeated-measures linear mixed model and compare the least squares means. However, I am aware that I can do that with multcomp package in R, but have never used it before. Anyone who knows how to, please kindly share the R code as well. I want to run the following code in SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Call %MULT macro for group x Time means */

proc glimmix data=Lentil_groups ;
class factorA Time  rep;
model Yield= factorA|Time / ddfm=kr;
/* Random effects to account for */
random intercept /subject=rep type=ar(1) residual;
lsmeans factorA*Time/pdiff;
%mult(trt=Time, by=factorA);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But it looks like %mult macro is not available in my SAS onDemand program. What are the possible options that I have (to install it or use other alternatives)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 12:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946660#M47298</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-08T12:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946662#M47299</link>
      <description>&lt;P&gt;Where did you hear about this %MULT() macro?&amp;nbsp; Ask whoever told you about it to provide the macro definition so that you can define it before you want to use it.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 12:55:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946662#M47299</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-10-08T12:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946666#M47300</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you saying that I am asking something that does not exist or you have never come across it as well? See this article below that I am reading and assist if you can:&lt;/P&gt;
&lt;P&gt;Piepho, H.P. (2012). A SAS macro for generating letter displays of pairwise mean comparisons. Communications in Biometry and Crop Science 7(1), 4-13.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 13:24:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946666#M47300</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-08T13:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946667#M47301</link>
      <description>&lt;P&gt;Did you read the article you cited?&lt;/P&gt;
&lt;P&gt;They provided a link:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;The&lt;/SPAN&gt; &lt;SPAN&gt;macro&lt;/SPAN&gt; &lt;SPAN&gt;%MULT&lt;/SPAN&gt; &lt;SPAN&gt;is&lt;/SPAN&gt; &lt;SPAN&gt;available&lt;/SPAN&gt; &lt;SPAN&gt;at&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;&lt;A href="https://www.uni-hohenheim.de/bioinformatik/" target="_blank"&gt;https://www.uni-hohenheim.de/bioinformatik/&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;beratung/toolsmacros/sasmacros/mult.sas&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;that no longer works.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;Perhaps you can contact the author?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="markedContent"&gt;&lt;SPAN&gt;Or see if you can search that university website and see if they still publish it under and different location.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 13:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946667#M47301</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-10-08T13:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946670#M47302</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/377531"&gt;@Lyson&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see that you mean the %MULT macro mentioned in the 2017 post "&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/how-to-get-pdmix800-sas-for-letter-displays-of-pairwise-mean/m-p/370326/highlight/true#M19416" target="_blank" rel="noopener"&gt;Re: how to get pdmix800.sas for letter displays of pairwise mean comparisons in proc mixed?&lt;/A&gt;" (where it says "...&amp;nbsp;&lt;SPAN&gt;%MULT macro sugested [sic!] by Piepho (2012) ...", which adds valuable search terms to the macro name), and it looks like you can download the source code from&amp;nbsp;&lt;A href="https://www.researchgate.net/publication/355381715_mult_macro_for_SAS" target="_blank" rel="noopener"&gt;https://www.researchgate.net/publication/355381715_mult_macro_for_SAS&lt;/A&gt;. Submit the two macro definitions (%MULT and %MULT_INNER) in your SAS session and then use the %MULT macro as intended. (It requires SAS/IML, but I believe that this is available in SAS OnDemand for Academics.)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 13:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946670#M47302</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2024-10-08T13:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946671#M47303</link>
      <description>&lt;P&gt;Hin Tom,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You seem to be harsh on me. I thought you would explain to me what I need to do. Maybe I am missing out something here. Asking where I got the %MULT macro thing and later on accusing me of not having read the article that I directed you to was a bit harsh on someone innocently asking for help. My question was whether there is an option to load this procedure on SAS OnDemand program editor as advised by the author: "To use it, the macro must be made available either by loading it into the program editor window and then submitting the code, .....". As a SAS expert, I expected you to at least provide some advice. I did not know that there might be some issues on this matter. Maybe I am misinterpretting your questioning. My apologies. Anyway, thanks for the advice.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 13:53:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946671#M47303</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-08T13:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946675#M47304</link>
      <description>&lt;P&gt;Hi Freelance,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wonderful, I will try to follow your advice in the meantime and see If I will win.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 14:09:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946675#M47304</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-08T14:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946694#M47307</link>
      <description>&lt;P&gt;To use a macro that is not supplied by SAS in their autocall macro library you first need to define the macro by running the code that starts with the %MACRO statement and ends with the %MEND statement.&amp;nbsp; Once the MULT macro is compiled then you can use the syntax %MULT to call the macro.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 15:14:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/946694#M47307</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-10-08T15:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/947281#M47357</link>
      <description>&lt;P&gt;Hi Tom&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the advice. I finally Got hold of the author (Piepho) and got his algorithm that I must submit first before accessing the %mult macro functions. I am sorted now. Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2024 18:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/947281#M47357</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-13T18:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to access %MULT macro in SAS OnDemand for Academics program?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/947282#M47358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the advice. I finally Got hold of the author (Piepho) and got his algorithm that I must submit first before accessing the %mult macro functions. I am sorted now. Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2024 18:16:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-access-MULT-macro-in-SAS-OnDemand-for-Academics-program/m-p/947282#M47358</guid>
      <dc:creator>Lyson</dc:creator>
      <dc:date>2024-10-13T18:16:44Z</dc:date>
    </item>
  </channel>
</rss>

