<?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: How do I translate lme in R to proc mixed? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506549#M26027</link>
    <description>&lt;P&gt;&lt;STRONG&gt;UPDATE....&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have successfully run the lme model from R in SAS, using PROC IML and the&amp;nbsp;call ExportDataSetToR subroutine (this is very cool). But, I would still like to know why my&amp;nbsp;mixed model is so different in SAS..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Oct 2018 17:46:44 GMT</pubDate>
    <dc:creator>ninemileshigh</dc:creator>
    <dc:date>2018-10-22T17:46:44Z</dc:date>
    <item>
      <title>How do I translate lme in R to proc mixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506384#M26021</link>
      <description>&lt;P&gt;I am working on a project with collaborators who use R- I am trying to recode an one of their analyses in SAS. It is a mixed effects model using the attached data (df1.csv). In our experimental design, individual chambers (numbered 1- 27) are sited within three levels of topography. An individual chamber only appears in one topography. Each chamber repeatedly measures CO2 from sequential time points (Days). Rainfall is thought to be an important driving variable for CO2.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The R code for the model is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;lme.mod &amp;lt;- lme(log(co2)~(Days+Topography+Rainfall)^2,random=~Topography|Chamber,&lt;BR /&gt;correlation=corARMA(p=1,q=0),na.action=na.exclude,&lt;BR /&gt;control = lmeControl(msMaxIter = 200, msMaxEval = 500,sing.tol=1e-20),data=df1)&lt;BR /&gt;anova(lme.mod)&lt;BR /&gt;Anova(lme.mod)&lt;BR /&gt;# initial model with 2 way interactions between all factors/variables and allowing topography-specific variance across chambers (chamber as random effect); for temporal autocorrelation, start with (1,0) corARMA model&lt;BR /&gt;# one ANOVA is F test, one is Type 2 Chi-sq; worth doing both to confirm sig. effect&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;which produces the output for fixed effects:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; numDF&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;denDF&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; F-value&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p-value&lt;BR /&gt;(Intercept)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;313.06357&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;.0001&lt;BR /&gt;Days&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.66294&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.4156&lt;BR /&gt;Topography&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 24&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 282.28233&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;.0001&lt;BR /&gt;Rainfall&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;29.08699&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;.0001&lt;BR /&gt;Days:Topography&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.39228&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.6755&lt;BR /&gt;Days:Rainfall&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1.67336&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.1959&lt;BR /&gt;Topography:Rainfall&amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4826&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;8.91292&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.0001&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My&amp;nbsp;interpretation of the code&amp;nbsp;is that the model has random factor fixed effects of chamber nested within topography, with an autoregressive structure (the measurements are repeated on each chamber at each time point). I want to code the equivalent in SAS;&amp;nbsp;I create&amp;nbsp;the&amp;nbsp;log of the CO2 variable in&amp;nbsp;the data step before I run the model. My&amp;nbsp;code is here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DATA DF;&lt;BR /&gt;INFILE FLUX FIRSTOBS= 2 DLM=',' MISSOVER;&lt;BR /&gt;INPUT&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;OBS DAYS&amp;nbsp;TOPOGRAPHY&amp;nbsp;$ CO2 CHAMBER RAINFALL JUNK;&lt;BR /&gt;LOGCO2= LOG(CO2);&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC SORT NODUPKEY;&lt;BR /&gt;BY CHAMBER&amp;nbsp;DAYS;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC MIXED DATA= DF MAXFUNC= 500 MAXITER= 200;&lt;BR /&gt;WHERE LOGCO2 NE .;&lt;BR /&gt;CLASS CHAMBER&amp;nbsp;DAYS TOPOGRAPHY ;&lt;BR /&gt;MODEL LOGCO2=&amp;nbsp;DAYS TOPOGRAPHY RAINFALL&lt;BR /&gt;DAYS&amp;nbsp;* TOPOGRAPHY&lt;BR /&gt;DAYS&amp;nbsp;* RAINFALL&amp;nbsp;&lt;BR /&gt;TOPOGRAPHY * RAINFALL&amp;nbsp;/ SOLUTION RESIDUAL DDFM= BW ;&lt;BR /&gt;RANDOM CHAMBER(TOPOGRAPHY) ;&lt;BR /&gt;REPEATED&amp;nbsp;DAYS / SUBJECT= CHAMBER*DAYS&amp;nbsp; TYPE= AR(1) R;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but it produces output very different from the R script:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Output&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Mixed: Type 3 Tests of Fixed Effects" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="5" scope="colgroup"&gt;Type 3 Tests of Fixed Effects&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="r b header" scope="col"&gt;Num DF&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Den DF&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;F Value&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Pr&amp;nbsp;&amp;gt;&amp;nbsp;F&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;DAYS&lt;/TH&gt;
&lt;TD class="r data"&gt;12&lt;/TD&gt;
&lt;TD class="r data"&gt;4489&lt;/TD&gt;
&lt;TD class="r data"&gt;2.95&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0004&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;TOPOGRAPHY&lt;/TH&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;4489&lt;/TD&gt;
&lt;TD class="r data"&gt;218.94&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;RAINFALL&lt;/TH&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;DAYS*TOPOGRAPHY&lt;/TH&gt;
&lt;TD class="r data"&gt;356&lt;/TD&gt;
&lt;TD class="r data"&gt;4489&lt;/TD&gt;
&lt;TD class="r data"&gt;1.54&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;RAINFALL*DAYS&lt;/TH&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;RAINFALL*TOPOGRAPHY&lt;/TH&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;TD class="r data"&gt;.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone help me understand&amp;nbsp;&lt;STRONG&gt;i)&amp;nbsp;&lt;/STRONG&gt;why the output is so different. I understand that thee are various ways to calculate the denominator df, but why are the numerator df so different??&amp;nbsp;&lt;STRONG&gt;ii)&amp;nbsp;&lt;/STRONG&gt;why am I not getting a result for the rainfall variable in my Type 3 tests?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 10:06:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506384#M26021</guid>
      <dc:creator>ninemileshigh</dc:creator>
      <dc:date>2018-10-22T10:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I translate lme in R to proc mixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506549#M26027</link>
      <description>&lt;P&gt;&lt;STRONG&gt;UPDATE....&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have successfully run the lme model from R in SAS, using PROC IML and the&amp;nbsp;call ExportDataSetToR subroutine (this is very cool). But, I would still like to know why my&amp;nbsp;mixed model is so different in SAS..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 17:46:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506549#M26027</guid>
      <dc:creator>ninemileshigh</dc:creator>
      <dc:date>2018-10-22T17:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I translate lme in R to proc mixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506698#M26035</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/26917"&gt;@ninemileshigh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;STRONG&gt;UPDATE....&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have successfully run the lme model from R in SAS, using PROC IML and the&amp;nbsp;call ExportDataSetToR subroutine (this is very cool). But, I would still like to know why my&amp;nbsp;mixed model is so different in SAS..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Different algorithms.&lt;/P&gt;
&lt;P&gt;What little I have heard about R is that the "data sets" are structured quite a bit differently than SAS data sets. So the code has to differ. With different starting points, such as data structure, then options are set differently and different options are needed to reflect the strengths and weaknesses of the algorithms based on the structures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exercise, not that it reflects R just different software.&lt;/P&gt;
&lt;P&gt;Create a spreadsheet with about 200 columns and 60,000 rows of data.&lt;/P&gt;
&lt;P&gt;Now calculate the mean, max, min, std deviation, range, interquartile range, median, 25th and 75th percentiles, skewness and kurtosis of each of the columns.&lt;/P&gt;
&lt;P&gt;Then consider the two lines of Proc Means code that would do the same thing in SAS with a similar data set.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 22:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/506698#M26035</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-22T22:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I translate lme in R to proc mixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/507187#M26042</link>
      <description>&lt;P&gt;R code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;library(nlme)
library(car)

lme.mod &amp;lt;- lme(log(co2)~(Days+Topography+Rainfall)^2,random=~Topography|Chamber,
               correlation=corARMA(p=1,q=0),na.action=na.exclude,
               control = lmeControl(msMaxIter = 200, msMaxEval = 500,sing.tol=1e-20),data=df1)
summary(lme.mod)
Anova(lme.mod, type=3)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*  remove DAYS from CLASS */
/*  make copy of DAYS to use in REPEATED */
/*  correct SUBJECT */
/*  heterogeneous variances for TOPOGRAPHY */
data df;
    set df;
    days_x = days;
    run;
PROC MIXED DATA= DF MAXFUNC= 500 MAXITER= 200;
WHERE LOGCO2 NE .;
CLASS CHAMBER TOPOGRAPHY(ref=first) days_x;
MODEL LOGCO2= DAYS TOPOGRAPHY RAINFALL
DAYS * TOPOGRAPHY
DAYS * RAINFALL 
TOPOGRAPHY * RAINFALL / SOLUTION RESIDUAL DDFM= BW ;
RANDOM CHAMBER(TOPOGRAPHY) / group=topography;
REPEATED days_x / SUBJECT= CHAMBER(topography) TYPE= AR(1);
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Your&amp;nbsp;two main problems: (1) In your R code, DAYS is numeric; in your original SAS code, DAYS is factor. (2) You mis-specified SUBJECT in the REPEATED statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are small differences in variance-covariance estimates between R and SAS (the data do not suggest or support such a complicated covariance structure, and many estimates are set to zero in MIXED), but otherwise the results match well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is just an answer to your coding question. I&amp;nbsp;do not guarantee that this statistical model is appropriate for this study design.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 15:05:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/507187#M26042</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2018-10-24T15:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I translate lme in R to proc mixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/507190#M26043</link>
      <description>&lt;P&gt;ok, thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;- I always find having something explained so much more helpful than reading the support pages. My frustration was with not being able to get SAS to run the data. I am also not sure whether this is the most appropriate analysis, but at least now I can work with it in SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 15:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-translate-lme-in-R-to-proc-mixed/m-p/507190#M26043</guid>
      <dc:creator>ninemileshigh</dc:creator>
      <dc:date>2018-10-24T15:15:18Z</dc:date>
    </item>
  </channel>
</rss>

