<?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: LSMESTIMATES WITH GLIMMIX in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/881813#M43628</link>
    <description>&lt;P&gt;Very good idea Steve, thank you so much!&lt;/P&gt;</description>
    <pubDate>Wed, 21 Jun 2023 21:30:14 GMT</pubDate>
    <dc:creator>palolix</dc:creator>
    <dc:date>2023-06-21T21:30:14Z</dc:date>
    <item>
      <title>LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879298#M43495</link>
      <description>&lt;P&gt;Dear community,&lt;/P&gt;
&lt;P&gt;I would really like to know if the way I wrote my lsmestimates is correct.&amp;nbsp; I'm combining the data of 2 experiments in a weighted analysis. I have 6 treatments applied at rate 1, 2, 3 and 4. So I want to compare trt 2 vs trt 3 at rate 1, and so on. In this case my dependent variable is the fresh shoot weight of watermelons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc glimmix data=one;&lt;BR /&gt;class Exp Blk Trt Rate;&lt;BR /&gt;model Fshoot_weight= Trt|Rate/dist=lognormal ddfm=kr;&lt;BR /&gt;random intercept/subject=Blk;&lt;BR /&gt;weight Fshoot_weight_wt;&lt;BR /&gt;lsmestimate Trt*Rate 'Trt 2 vs 3 @ rate=1' 1&amp;nbsp; 11&amp;nbsp; -11&amp;nbsp; 1&amp;nbsp; 1&amp;nbsp; 1,&lt;BR /&gt;'Trt 2 vs 4 @ rate=1' 1&amp;nbsp; 11&amp;nbsp; 1&amp;nbsp; -11&amp;nbsp; 1&amp;nbsp; 1,&lt;BR /&gt;'Trt 2 vs 5 @ rate=1' 1&amp;nbsp; 11&amp;nbsp; 1&amp;nbsp; 1&amp;nbsp; -11&amp;nbsp; 1/adjust=t elsm ;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would greatly appreciate if you could check if these estimates statements make sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot!&lt;/P&gt;
&lt;P&gt;Caroline&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 23:57:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879298#M43495</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2023-06-05T23:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879353#M43502</link>
      <description>&lt;P&gt;The test formed by the LSMESTIMATE statement is in the form KLB, where K is the matrix formed by the rows of your LSMESTIMATE coefficients. B is the parameter estimate vector that you can see by adding the SOLUTION option to the MODEL statement. Looking at the results of the ELSM option and the SOLUTION option shows you how your LSMESTIMATE coefficients line up with the elements of the parameter estimates vector and will tell you if you have the correct set of coefficients for your test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be unusual to have 1's on the levels of the coefficients that you are not interested in. We usually see 0's there. Also unusual to see 11 and -11 on the levels you want to compare. We usually see 1 and -1 there. But that might have to do with the weighting you have for this data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 14:30:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879353#M43502</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2023-06-06T14:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879450#M43506</link>
      <description>&lt;P&gt;Thank you very much for your answer!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since I have 2 factors (trt and rate) how do I write the estimates to compare trt 2 vs trt 3 at rate 1?&lt;/P&gt;
&lt;P&gt;If I write them like this then I'm comparing trt 2 with 3, but what about the rate (I have 6 treatments in total and 4 rates)?&lt;/P&gt;
&lt;P&gt;lsmestimate Trt*Rate&amp;nbsp; &amp;nbsp; &amp;nbsp;'Trt 2 vs 3 @ rate=1'&amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; 1&amp;nbsp; -1&amp;nbsp; 0&amp;nbsp; 0&amp;nbsp; 0,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 21:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879450#M43506</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2023-06-06T21:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879584#M43514</link>
      <description>&lt;P&gt;Look at the output table from the ELSM option (should be labelled "Least Squared Means Estimate Coefficients"). That table shows which lsmeans you are comparing in each contrast. The 1 and -1 in your contrast should line up with the lsmeans you want to compare.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Further help with CONTRAST and ESTIMATE statements can be found&amp;nbsp;&lt;A href="https://support.sas.com/kb/24/447.html" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:06:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879584#M43514</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2023-06-07T15:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879673#M43522</link>
      <description>&lt;P&gt;Hi StatsMan,&lt;/P&gt;
&lt;P&gt;Thank you so much for your help, now I got it. I think it should look like this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc glimmix data=one;&lt;BR /&gt;class Exp Blk Trt Rate;&lt;BR /&gt;model Fshoot_weight= Trt|Rate/dist=lognormal ddfm=kr solution;&lt;BR /&gt;random intercept/subject=Blk;&lt;BR /&gt;weight Fshoot_weight_wt;&lt;/P&gt;
&lt;P&gt;lsmestimate Trt*Rate 'Trt 2 vs 3 @ rate=1' 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0,&lt;BR /&gt;'Trt 2 vs 4 @ rate=1' 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0,&lt;BR /&gt;'Trt 2 vs 5 @ rate=1'0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0/adjust=t elsm&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Glimmix: Least Squares Means Estimate Coefficients" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="6" scope="colgroup"&gt;Least Squares Means Estimate Coefficients&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l b header" scope="col"&gt;Effect&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;Trt&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;RateA&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Row1&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Row2&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Row3&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;-1&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;-1&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;5&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;-1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;5&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;5&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;5&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;6&lt;/TH&gt;
&lt;TH class="l data"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;6&lt;/TH&gt;
&lt;TH class="l data"&gt;2&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;6&lt;/TH&gt;
&lt;TH class="l data"&gt;3&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Trt*RateA&lt;/TH&gt;
&lt;TH class="l data"&gt;6&lt;/TH&gt;
&lt;TH class="l data"&gt;4&lt;/TH&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 08 Jun 2023 00:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/879673#M43522</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2023-06-08T00:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/881567#M43615</link>
      <description>&lt;P&gt;One thing that would have made this clearer to me would have been to use some spaces in your various LSMESTIMATE statements. For instance:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;lsmestimate Trt*Rate 'Trt 2 vs 3 @ rate=1'  0 0 0 0  1 0 0 0  -1 0 0 0  0 0 0 0  0 0 0 0  0 0 0 0,
'Trt 2 vs 4 @ rate=1'  0 0 0 0  1 0 0 0  0 0 0 0  -1 0 0 0  0 0 0 0  0 0 0 0,
'Trt 2 vs 5 @ rate=1'  0 0 0 0  1 0 0 0  0 0 0 0   0 0 0 0  -1 0 0 0  0 0 0 0/adjust=t elsm&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This method is my preference - at least two spaces before the first coefficient, at least two spaces between levels, and some effort at aligning things vertically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or use the non-positional format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 18:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/881567#M43615</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2023-06-20T18:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: LSMESTIMATES WITH GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/881813#M43628</link>
      <description>&lt;P&gt;Very good idea Steve, thank you so much!&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 21:30:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LSMESTIMATES-WITH-GLIMMIX/m-p/881813#M43628</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2023-06-21T21:30:14Z</dc:date>
    </item>
  </channel>
</rss>

