<?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: GLM: ods output LSMEANDIFFCL and LSMEANS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68562#M19652</link>
    <description>I don't think it is a bug.  ODS OUTPUT is very different from Output data sets.  The ODS data set are display dependent, (my term) which can be frustrating.&lt;BR /&gt;
&lt;BR /&gt;
For your data I would create I on LSMEANS and merge with LSMEANDIFFCL by I.&lt;BR /&gt;
You may have a more complex problem: more effects more Ys but I think the technique can be adapdted to that too.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data test;&lt;BR /&gt;
   do rep=1 to 3;&lt;BR /&gt;
      do trt = 0 to 4;&lt;BR /&gt;
         y = ranuni(454545);&lt;BR /&gt;
         output;&lt;BR /&gt;
         end;&lt;BR /&gt;
      end;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
*ods trace on;&lt;BR /&gt;
proc glm;&lt;BR /&gt;
   class trt;&lt;BR /&gt;
   model y = trt;&lt;BR /&gt;
   lsmeans trt / cl pdiff=control('0');&lt;BR /&gt;
   ods output LSMeans=LSMeans LSMeanDiffCL=LSMeanDiffCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
   run;&lt;BR /&gt;
ods trace off;&lt;BR /&gt;
&lt;BR /&gt;
/*&lt;BR /&gt;
What I am trying to achieve is a table:&lt;BR /&gt;
Treatment Mean Diff from control 95% CI for diff&lt;BR /&gt;
Control xxx - -&lt;BR /&gt;
Treat 1 xxx yyy zz to zz&lt;BR /&gt;
Treat 2 xxx yyy zz to zz&lt;BR /&gt;
Treat 3 xxx yyy zz to zz &lt;BR /&gt;
*/&lt;BR /&gt;
data lsmeans;&lt;BR /&gt;
   set lsmeans;&lt;BR /&gt;
   by effect;&lt;BR /&gt;
   if first.effect then i = 0;&lt;BR /&gt;
   i + 1;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print data=LSMeanCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
data combined;&lt;BR /&gt;
   merge lsmeans lsmeandiffcl;&lt;BR /&gt;
   by effect i;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]</description>
    <pubDate>Tue, 16 Mar 2010 16:45:13 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2010-03-16T16:45:13Z</dc:date>
    <item>
      <title>GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68555#M19645</link>
      <description>Does anyone know why my class variable TREAT (numeric) gets switched to character in ODS table LSMEANS? It doesn't happen in LSMEANDIFFCL, so if you want to merge the two datasets for printing a report it means you have to convert it as one dataset has TREAT as a character variable and the other has it as numeric. I am sure this didn't happen in 9.1.</description>
      <pubDate>Tue, 16 Mar 2010 09:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68555#M19645</guid>
      <dc:creator>cws</dc:creator>
      <dc:date>2010-03-16T09:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68556#M19646</link>
      <description>I have 9.1.3.  In that version LSMeanDiffCL does not have the variable named in the LSMEANS statement.  It has I and J and they relate to LSMeanNumber in the LSMEANS data set.  Are you referring to ODS output data set LSMEANCL which does NOT have LSMeanNumber but is very similar to LSMEANS?  &lt;BR /&gt;
&lt;BR /&gt;
Merge LSMEANS with LSMEANSCL to get LSMeanNumber and you should be able to relate that to I J in LSMeanDiffCL.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data test;&lt;BR /&gt;
   do rep=1 to 3;&lt;BR /&gt;
      do trt = 1 to 3;&lt;BR /&gt;
         y = ranuni(454545);&lt;BR /&gt;
         output;&lt;BR /&gt;
         end;&lt;BR /&gt;
      end;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
ods trace on;&lt;BR /&gt;
proc glm;&lt;BR /&gt;
   class trt;&lt;BR /&gt;
   model y = trt;&lt;BR /&gt;
   lsmeans trt / cl pdiff;&lt;BR /&gt;
   ods output LSMeans=LSMeans LSMeanDiffCL=LSMeanDiffCL LSMeanCL=LSMeanCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
ods trace off;&lt;BR /&gt;
proc contents varnum data=LSMeans;&lt;BR /&gt;
   ods select Position;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print data=LSMeans;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc contents varnum data=LSMeanCL;&lt;BR /&gt;
   ods select Position;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print data=LSMeanCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc contents varnum data=LSMeanDiffCL;&lt;BR /&gt;
   ods select Position;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print data=LSMeanDiffCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
With output....&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
                         The SAS System                      117&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
                     The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
  #    Variable        Type    Len    Format    Label&lt;BR /&gt;
&lt;BR /&gt;
  1    Effect          Char      9&lt;BR /&gt;
  2    Dependent       Char      8&lt;BR /&gt;
  3    trt             Char      1&lt;BR /&gt;
  4    LSMean          Num       8    12.8      y LSMEAN&lt;BR /&gt;
  5    LSMeanNumber    Num       8    BEST8.    LSMEAN Number&lt;BR /&gt;
&amp;#12;&lt;BR /&gt;
                         The SAS System                      118&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
                                                        LSMean&lt;BR /&gt;
 Obs    Effect    Dependent    trt          LSMean      Number&lt;BR /&gt;
&lt;BR /&gt;
  1      trt          y         1       0.54560722           1&lt;BR /&gt;
  2      trt          y         2       0.87772021           2&lt;BR /&gt;
  3      trt          y         3       0.31259905           3&lt;BR /&gt;
&amp;#12;&lt;BR /&gt;
                         The SAS System                      119&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
                     The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
      #    Variable     Type    Len    Format    Label&lt;BR /&gt;
&lt;BR /&gt;
      1    Effect       Char      9&lt;BR /&gt;
      2    Dependent    Char      8&lt;BR /&gt;
      3    trt          Char      1&lt;BR /&gt;
      4    LowerCL      Num       8    D12.3&lt;BR /&gt;
      5    LSMean       Num       8    D12.3     y LSMEAN&lt;BR /&gt;
      6    UpperCL      Num       8    D12.3&lt;BR /&gt;
&amp;#12;&lt;BR /&gt;
                         The SAS System                      120&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
Obs Effect Dependent trt      LowerCL       LSMean      UpperCL&lt;BR /&gt;
&lt;BR /&gt;
 1   trt       y      1      0.243535     0.545607     0.847680&lt;BR /&gt;
 2   trt       y      2      0.575648     0.877720     1.179793&lt;BR /&gt;
 3   trt       y      3      0.010527     0.312599     0.614671&lt;BR /&gt;
&amp;#12;&lt;BR /&gt;
                         The SAS System                      121&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
                     The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
#   Variable     Type   Len   Format   Label&lt;BR /&gt;
&lt;BR /&gt;
1   Effect       Char     9&lt;BR /&gt;
2   Dependent    Char     8&lt;BR /&gt;
3   i            Num      8   1.&lt;BR /&gt;
4   j            Num      8   1.&lt;BR /&gt;
5   LowerCL      Num      8   D12.3&lt;BR /&gt;
6   Difference   Num      8   D12.3    Difference Between Means&lt;BR /&gt;
7   UpperCL      Num      8   D12.3&lt;BR /&gt;
&amp;#12;&lt;BR /&gt;
                         The SAS System                      122&lt;BR /&gt;
                                    06:16 Monday, March 15, 2010&lt;BR /&gt;
&lt;BR /&gt;
Obs Effect Dependent i j      LowerCL   Difference      UpperCL&lt;BR /&gt;
&lt;BR /&gt;
 1   trt       y     1 2    -0.759308    -0.332113     0.095082&lt;BR /&gt;
 2   trt       y     1 3    -0.194187     0.233008     0.660203&lt;BR /&gt;
 3   trt       y     2 3     0.137926     0.565121     0.992316&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 16 Mar 2010 11:43:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68556#M19646</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2010-03-16T11:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68557#M19647</link>
      <description>Thanks data null. I am using the PDIFF=CONTROL option in 9.2, which compares each treatment to a control, so the values of TRT should match between the two datasets.&lt;BR /&gt;
proc glm data=test;&lt;BR /&gt;
   class trt;&lt;BR /&gt;
   model y = trt;&lt;BR /&gt;
   lsmeans trt / cl pdiff=control('3');&lt;BR /&gt;
   ods output LSMeans=LSMeans LSMeanDiffCL=LSMeanDiffCL LSMeanCL=LSMeanCL;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
However, if you note the type of the variable TRT, you will see they are different:&lt;BR /&gt;
&lt;BR /&gt;
 LSMeans dataset&lt;BR /&gt;
                                    NB type of variable TRT&lt;BR /&gt;
&lt;BR /&gt;
                                    The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
                  #    Variable        Type    Len    Format    Label&lt;BR /&gt;
&lt;BR /&gt;
                  1    Effect          Char      9&lt;BR /&gt;
                  2    Dependent       Char      8&lt;BR /&gt;
                  3    trt             Char      1&lt;BR /&gt;
                  4    LSMean          Num       8    12.8      y LSMEAN&lt;BR /&gt;
                  5    LSMeanNumber    Num       8    BEST8.    LSMEAN Number&lt;BR /&gt;
                                       &lt;BR /&gt;
&lt;BR /&gt;
LSMeanCL dataset&lt;BR /&gt;
NB type of variable TRT&lt;BR /&gt;
&lt;BR /&gt;
                                    The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
                      #    Variable     Type    Len    Format    Label&lt;BR /&gt;
&lt;BR /&gt;
                      1    Effect       Char      9&lt;BR /&gt;
                      2    Dependent    Char      8&lt;BR /&gt;
                      3    trt          Char      1&lt;BR /&gt;
                      4    LowerCL      Num       8    D12.3&lt;BR /&gt;
                      5    LSMean       Num       8    D12.3     y LSMEAN&lt;BR /&gt;
                      6    UpperCL      Num       8    D12.3&lt;BR /&gt;
                                     &lt;BR /&gt;
LSMEANDIFFCL dataset&lt;BR /&gt;
                                  &lt;BR /&gt;
NB type of variable TRT&lt;BR /&gt;
&lt;BR /&gt;
                                    The CONTENTS Procedure&lt;BR /&gt;
&lt;BR /&gt;
                                  Variables in Creation Order&lt;BR /&gt;
&lt;BR /&gt;
             #    Variable      Type    Len    Format    Label&lt;BR /&gt;
&lt;BR /&gt;
             1    Effect        Char      9&lt;BR /&gt;
             2    Dependent     Char      8&lt;BR /&gt;
             3    i             Num       8    1.&lt;BR /&gt;
             4    j             Num       8    1.&lt;BR /&gt;
             5    LowerCL       Num       8    D12.3&lt;BR /&gt;
             6    Difference    Num       8    D12.3     Difference Between Means&lt;BR /&gt;
             7    UpperCL       Num       8    D12.3&lt;BR /&gt;
             8    trt           Num       8&lt;BR /&gt;
             9    _trt          Num       8&lt;BR /&gt;
&lt;BR /&gt;
For some reason TRT goes from being numeric (in LSMEANDIFFCL) to character in LSMEANS and LSMEANCL.</description>
      <pubDate>Tue, 16 Mar 2010 12:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68557#M19647</guid>
      <dc:creator>cws</dc:creator>
      <dc:date>2010-03-16T12:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68558#M19648</link>
      <description>Interesting with 9.1.3 I don't get trt and _trt., even when I add CONTROL, as you did.  Delete: &lt;U&gt;(You still have I, J and LSMEANNUMBER so no problem.)&lt;/U&gt;  &lt;BR /&gt;
&lt;BR /&gt;
I was not looking closely enough. I now see that with CONTROL the LSMEANS ODS data set does NOT include lsmean number.  That is a bit of a pickle.  You could read the character treatment values to create a numeric value or use another LSMEANS statement to get an LSMEANS data set with LSMeanNnumber.&lt;BR /&gt;
&lt;BR /&gt;
I guess the "best" thing to do is use character TRT.&lt;BR /&gt;
&lt;BR /&gt;
It is frustrating.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
#   Variable     Type   Len   Format   Label&lt;BR /&gt;
&lt;BR /&gt;
1   Effect       Char     9&lt;BR /&gt;
2   Dependent    Char     8&lt;BR /&gt;
3   i            Num      8   1.&lt;BR /&gt;
4   j            Num      8   1.&lt;BR /&gt;
5   LowerCL      Num      8   D12.3&lt;BR /&gt;
6   Difference   Num      8   D12.3    Difference Between Means&lt;BR /&gt;
7   UpperCL      Num      8   D12.3&lt;BR /&gt;
[/pre]

Message was edited by: data _null_;</description>
      <pubDate>Tue, 16 Mar 2010 13:37:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68558#M19648</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2010-03-16T13:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68559#M19649</link>
      <description>Hi&lt;BR /&gt;
Well it is still a problem because there is nothing to merge with: LSMEANS (or LSMEANCL) does not have i and j in them. LSMEANDIFFCL has everything (i,j,TRT etc). In order to merge you need to create another dataset from LSMEANS, converting TRT into a numeric variable TRTN (or similar) then merge back in, renaming TRTN back to TRT. Very tedious! Or is there another way I can combine the means, differences from control, CIs for output by a PROC REPORT. I can't think of another way. I may be forced to use ESTIMATE I guess.</description>
      <pubDate>Tue, 16 Mar 2010 14:42:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68559#M19649</guid>
      <dc:creator>cws</dc:creator>
      <dc:date>2010-03-16T14:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68560#M19650</link>
      <description>I'm not sure exactly which data you want to combine.  And what the result should be.  If you could be specific and show example that would be helpful. Use the have/need scenario.&lt;BR /&gt;
&lt;BR /&gt;
The simplest would be to convert TRT to character first.  &lt;BR /&gt;
&lt;BR /&gt;
There is OUT= on LSMEANS statement which preserves the type for TRT.&lt;BR /&gt;
&lt;BR /&gt;
This is also PROC MIXED, which I'm pretty sure does not have these "issues".</description>
      <pubDate>Tue, 16 Mar 2010 15:21:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68560#M19650</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2010-03-16T15:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68561#M19651</link>
      <description>That's a helpful suggestion using the OUT= option in LSMEANS. It still seems odd to me that the type of the class variable should change in ODS output: do you suppose it is a bug or is it meant to happen?&lt;BR /&gt;
&lt;BR /&gt;
What I am trying to achieve is a table:&lt;BR /&gt;
Treatment    Mean   Diff from control   95% CI for diff&lt;BR /&gt;
Control         xxx             -                        -&lt;BR /&gt;
Treat 1         xxx            yyy               zz to zz&lt;BR /&gt;
Treat 2         xxx            yyy               zz to zz&lt;BR /&gt;
Treat 3         xxx            yyy               zz to zz</description>
      <pubDate>Tue, 16 Mar 2010 15:51:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68561#M19651</guid>
      <dc:creator>cws</dc:creator>
      <dc:date>2010-03-16T15:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: GLM: ods output LSMEANDIFFCL and LSMEANS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68562#M19652</link>
      <description>I don't think it is a bug.  ODS OUTPUT is very different from Output data sets.  The ODS data set are display dependent, (my term) which can be frustrating.&lt;BR /&gt;
&lt;BR /&gt;
For your data I would create I on LSMEANS and merge with LSMEANDIFFCL by I.&lt;BR /&gt;
You may have a more complex problem: more effects more Ys but I think the technique can be adapdted to that too.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data test;&lt;BR /&gt;
   do rep=1 to 3;&lt;BR /&gt;
      do trt = 0 to 4;&lt;BR /&gt;
         y = ranuni(454545);&lt;BR /&gt;
         output;&lt;BR /&gt;
         end;&lt;BR /&gt;
      end;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
*ods trace on;&lt;BR /&gt;
proc glm;&lt;BR /&gt;
   class trt;&lt;BR /&gt;
   model y = trt;&lt;BR /&gt;
   lsmeans trt / cl pdiff=control('0');&lt;BR /&gt;
   ods output LSMeans=LSMeans LSMeanDiffCL=LSMeanDiffCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
   run;&lt;BR /&gt;
ods trace off;&lt;BR /&gt;
&lt;BR /&gt;
/*&lt;BR /&gt;
What I am trying to achieve is a table:&lt;BR /&gt;
Treatment Mean Diff from control 95% CI for diff&lt;BR /&gt;
Control xxx - -&lt;BR /&gt;
Treat 1 xxx yyy zz to zz&lt;BR /&gt;
Treat 2 xxx yyy zz to zz&lt;BR /&gt;
Treat 3 xxx yyy zz to zz &lt;BR /&gt;
*/&lt;BR /&gt;
data lsmeans;&lt;BR /&gt;
   set lsmeans;&lt;BR /&gt;
   by effect;&lt;BR /&gt;
   if first.effect then i = 0;&lt;BR /&gt;
   i + 1;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print data=LSMeanCL;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
data combined;&lt;BR /&gt;
   merge lsmeans lsmeandiffcl;&lt;BR /&gt;
   by effect i;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 16 Mar 2010 16:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GLM-ods-output-LSMEANDIFFCL-and-LSMEANS/m-p/68562#M19652</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2010-03-16T16:45:13Z</dc:date>
    </item>
  </channel>
</rss>

