<?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: Does it make sense to specify a repeated effect that does not appear in the model? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Does-it-make-sense-to-specify-a-repeated-effect-that-does-not/m-p/358116#M18817</link>
    <description>&lt;P&gt;It depends &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &amp;nbsp;This is my take:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your REPEATED statement specifies two parameters: the variance among observations among subjects taken in the same &lt;EM&gt;year&lt;/EM&gt;, and the covariance between two any observations (any two &lt;EM&gt;year&lt;/EM&gt;s) taken on the same subject. If &lt;EM&gt;year&lt;/EM&gt; is not included in the MODEL statement as a fixed effect, then you are assuming that &lt;EM&gt;year&lt;/EM&gt; does not affect the mean value of &lt;EM&gt;concentration&lt;/EM&gt;; that &lt;EM&gt;year&lt;/EM&gt; affects only the variance of &lt;EM&gt;concentration&lt;/EM&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For some of the disciplines I work with (e.g., field work in natural resources), that assumption--that mean response is not a function of year--is patently untenable. But typically we work with data observed over very few years. If we had 100 years and did not believe in global climate change, then that might be a totally different scenario.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given that your study involves soils, I suspect you, too, have few years. Are you measuring each plot in multiple years? How many years? How many days since harvest do you measure? Have you plotted concentration versus days since harvest each year for each plot, and if so, are the profiles roughly parallel for years within each plot? These are things I would consider as I pondered model structure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally for what I think might be your scenario, I would consider days_since_harvest and year as fixed effects factors, and plot as a random effect factor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 May 2017 04:30:16 GMT</pubDate>
    <dc:creator>sld</dc:creator>
    <dc:date>2017-05-12T04:30:16Z</dc:date>
    <item>
      <title>Does it make sense to specify a repeated effect that does not appear in the model?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Does-it-make-sense-to-specify-a-repeated-effect-that-does-not/m-p/357554#M18793</link>
      <description>&lt;P&gt;The concentration of a certain nutrient is measured in soil each fall after harvest in a set of research plots. I want to model the change in nutrient concentration over a number of years, but I'm inclined to express the time variable in days since the start of the study, as the number of days between measurements is not constant.&lt;/P&gt;&lt;P&gt;Here's the SAS code of my present approach:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROC MIXED DATA = soil;
  CLASS year plot;
  MODEL concentration = daysIntoStudy / DDFM = kr;
  REPEATED year / SUB = plot TYPE = ar(1) r;
RUN; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to indicate an autoregressive covariance structure for the residuals as the same plots are being sampled each year, and I know that the repeated effect must be categorical, but I'm not sure if this is the right way to do it given that the variable &lt;EM&gt;year&lt;/EM&gt; does not explicitly appear in the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this correct? Also, should the predictor &lt;EM&gt;daysIntoStudy&lt;/EM&gt; be specified as a random effect?&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 16:20:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Does-it-make-sense-to-specify-a-repeated-effect-that-does-not/m-p/357554#M18793</guid>
      <dc:creator>user42</dc:creator>
      <dc:date>2017-05-10T16:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Does it make sense to specify a repeated effect that does not appear in the model?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Does-it-make-sense-to-specify-a-repeated-effect-that-does-not/m-p/358116#M18817</link>
      <description>&lt;P&gt;It depends &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &amp;nbsp;This is my take:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your REPEATED statement specifies two parameters: the variance among observations among subjects taken in the same &lt;EM&gt;year&lt;/EM&gt;, and the covariance between two any observations (any two &lt;EM&gt;year&lt;/EM&gt;s) taken on the same subject. If &lt;EM&gt;year&lt;/EM&gt; is not included in the MODEL statement as a fixed effect, then you are assuming that &lt;EM&gt;year&lt;/EM&gt; does not affect the mean value of &lt;EM&gt;concentration&lt;/EM&gt;; that &lt;EM&gt;year&lt;/EM&gt; affects only the variance of &lt;EM&gt;concentration&lt;/EM&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For some of the disciplines I work with (e.g., field work in natural resources), that assumption--that mean response is not a function of year--is patently untenable. But typically we work with data observed over very few years. If we had 100 years and did not believe in global climate change, then that might be a totally different scenario.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given that your study involves soils, I suspect you, too, have few years. Are you measuring each plot in multiple years? How many years? How many days since harvest do you measure? Have you plotted concentration versus days since harvest each year for each plot, and if so, are the profiles roughly parallel for years within each plot? These are things I would consider as I pondered model structure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally for what I think might be your scenario, I would consider days_since_harvest and year as fixed effects factors, and plot as a random effect factor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 04:30:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Does-it-make-sense-to-specify-a-repeated-effect-that-does-not/m-p/358116#M18817</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2017-05-12T04:30:16Z</dc:date>
    </item>
  </channel>
</rss>

