<?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: ANCOVA with &amp;quot;Day number&amp;quot; as covariate in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187536#M9759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The danger in the method with proc glm and assuming day_no as a covariate is an assumption of linearity.&amp;nbsp; If your growth curve is linear, then that makes good sense.&amp;nbsp; However, consider two treatments that start at exactly the same place, and end at the same place.&amp;nbsp; In the first, the response goes up rapidly and then levels off (a bowl with the mouth down), while in the second the response is relatively flat until the end and then increases (same bowl with the mouth up).&amp;nbsp; A linear covariate will not distinguish between these two cases--you will get nearly identical estimates of the slope.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other questions:&lt;/P&gt;&lt;P&gt;1. Why GLIMMIX? It's more versatile than MIXED, so we use it almost exclusively for mixed model (including repeated measures).&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I don't know what your response variable is--my guess is that it has a gaussian error.&amp;nbsp; I just got slightly better results with method=laplace and a G side parameterization than with the default pseudo-REML and an R side parameterization.&amp;nbsp; If your data has normally distributed errors, then the default is preferable.&lt;/P&gt;&lt;P&gt;3. Selecting covariance structures can get tricky, but for data with normally distributed errors, fit by default methods, using AICc is a good guide to choosing amongst various structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea of a semi-parametric approach to the day_no issue using a spline may be feasible, but I will need to explore my simulated data first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Apr 2014 16:58:27 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2014-04-29T16:58:27Z</dc:date>
    <item>
      <title>ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187531#M9754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got some problems with selecting right model/method in my analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two groups of animals (differ by "Treatment") were measured from 1-st to 42-nd day, one common value for each group was measured by each day (food consumption per day).&lt;/P&gt;&lt;P&gt;I need to compare this groups and I want to use ANCOVA with "Treatment" as fixed effect and "Day number" as covariate in the model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many examples which contain covariates with some sort of randomness in their distribution (like weight, age, IQ, etc., where we can't directly control this variable).&lt;/P&gt;&lt;P&gt;But in our experiment we eliminate this variation by measuring groups day by day. Is it correct to use "Day number" as continious covariate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe the whole model is incorrect and you can suggest right one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 11:06:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187531#M9754</guid>
      <dc:creator>AndreyMyslivets</dc:creator>
      <dc:date>2014-04-21T11:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187532#M9755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was measured on each day?&amp;nbsp; It looks to me like a repeated measures design, so something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=yourdata;&lt;/P&gt;&lt;P&gt;class treatment day_no anml_no;&lt;/P&gt;&lt;P&gt;model response_variable=treatment|day_no/ddfm=kr2;&lt;/P&gt;&lt;P&gt;random day_no/residual type=ar(1) subject=anml_no;&lt;/P&gt;&lt;P&gt;random intercept/subject=anml_no;&lt;/P&gt;&lt;P&gt;lsmeans treatment/diff;&lt;/P&gt;&lt;P&gt;lsmeans treatment*day_no/slicediff=day_no;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2014 18:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187532#M9755</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-04-23T18:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187533#M9756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Steve!&lt;/P&gt;&lt;P&gt;Thank you very much for answer! But it's impossible to use here &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;a repeated measures design... in classical meaning.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I have just one average value of &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;food consumption per day for each group, &lt;/SPAN&gt;&lt;/SPAN&gt;I haven't concrete subjects.&lt;/P&gt;&lt;P&gt;There is example of my data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="249" style="border: 1px solid #000000; height: 245px; width: 221px;" width="219"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Day&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Treat&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Av. value&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;SPAN style="color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;"&gt;0.24&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;SPAN style="color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;"&gt;0.&lt;/SPAN&gt;35&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0.52&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0.64&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;41&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5.47&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;41&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;42&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5.31&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;42&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;treat 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5.43&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance!&lt;/P&gt;&lt;P&gt;Best wishes!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 06:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187533#M9756</guid>
      <dc:creator>AndreyMyslivets</dc:creator>
      <dc:date>2014-04-28T06:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187534#M9757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, then we can trim things down some, rearrange and see what happens:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=yourdata method=laplace;&lt;/P&gt;&lt;P&gt;class treatment day_no ;&lt;/P&gt;&lt;P&gt;model response_variable=treatment day_no;&lt;/P&gt;&lt;P&gt;random day_no/subject=treatment type=ar(1) ;&lt;/P&gt;&lt;P&gt;lsmeans treatment/diff;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At least this way the standard errors reflect the within subject correlation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 13:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187534#M9757</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-04-28T13:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187535#M9758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Steve!&lt;/P&gt;&lt;P&gt;I'm really beginner at using methods above PROC GLM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I tried to solve the problem I used this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glm data=mydata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class treatment;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model response_variable=treatment day_no;&lt;/P&gt;&lt;P&gt;&amp;nbsp; lsmeans treatment;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I planned to use day_no as covariate and to compare regression slopes.&lt;/P&gt;&lt;P&gt;Can you help me to understand what is my mistake? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I have some questions about your code. &lt;/P&gt;&lt;P&gt;1. Why did you use the GLIMMIX instead of, for example, MIXED?&lt;/P&gt;&lt;P&gt;2. You have use&amp;nbsp; Laplace's approximation method for your analysis. Are there any criterions for choosing what method to use? SAS help does not give any advises for practical using just technical details.&lt;/P&gt;&lt;P&gt;3. There is the same problem with covariance structure type. I've checked a lot of sources and usually authors don't give any recommendations for choosing the right one c.s. for one or another real problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be really helpful if you turn me in the right direction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 07:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187535#M9758</guid>
      <dc:creator>AndreyMyslivets</dc:creator>
      <dc:date>2014-04-29T07:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187536#M9759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The danger in the method with proc glm and assuming day_no as a covariate is an assumption of linearity.&amp;nbsp; If your growth curve is linear, then that makes good sense.&amp;nbsp; However, consider two treatments that start at exactly the same place, and end at the same place.&amp;nbsp; In the first, the response goes up rapidly and then levels off (a bowl with the mouth down), while in the second the response is relatively flat until the end and then increases (same bowl with the mouth up).&amp;nbsp; A linear covariate will not distinguish between these two cases--you will get nearly identical estimates of the slope.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other questions:&lt;/P&gt;&lt;P&gt;1. Why GLIMMIX? It's more versatile than MIXED, so we use it almost exclusively for mixed model (including repeated measures).&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I don't know what your response variable is--my guess is that it has a gaussian error.&amp;nbsp; I just got slightly better results with method=laplace and a G side parameterization than with the default pseudo-REML and an R side parameterization.&amp;nbsp; If your data has normally distributed errors, then the default is preferable.&lt;/P&gt;&lt;P&gt;3. Selecting covariance structures can get tricky, but for data with normally distributed errors, fit by default methods, using AICc is a good guide to choosing amongst various structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea of a semi-parametric approach to the day_no issue using a spline may be feasible, but I will need to explore my simulated data first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 16:58:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187536#M9759</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-04-29T16:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: ANCOVA with "Day number" as covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187537#M9760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;Thanks to all, who tried to help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;I will try to summarize information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;Helpful comment from &lt;/SPAN&gt;&lt;A href="http://stats.stackexchange.com/questions/94636/ancova-with-day-number-of-my-study-as-covariate" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;"&gt;another source&lt;/A&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;The assumptions for an ANCOVA or similar general linear models are that the residuals are normally distributed and homoscedastic, and that each observation is independent.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; background-color: rgba(252, 251, 248, 0.901961); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;"&gt;Although not the residuals, the clear, curvy shape of your scatterplot indicates almost certain temporal autocorrelation, and therefore non-independence of observations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;Pictures of my data:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;&lt;IMG __jive_id="7184" alt="5009f04d072f32f06453609955e0680a.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/7184_5009f04d072f32f06453609955e0680a.png" width="450" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;So the plan to using Repeated Measures ANOVA or ANCOVA with day number as covariate wasn't so good...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;I have two ways to solve this problem today:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #444444; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(252, 251, 248, 0.901961);"&gt;1. Classical (for my job colleagues) way and &lt;SPAN style="color: #000000; font-family: arial, sans-serif; background-color: #ffffff;"&gt;suggested by &lt;A class="commenter" href="https://www.linkedin.com/groups?viewMemberFeed=&amp;amp;gid=2378504&amp;amp;memberID=7613442" style="font-weight: bold; font-family: Arial, sans-serif; color: #7b539d; background-color: #ffffff;" title="See this member's activity"&gt;Nestor Rohowsky&lt;/A&gt;&lt;/SPAN&gt; &lt;A href="https://www.linkedin.com/groups/ANCOVA-Day-number-as-covariate-2378504.S.5864641463643561986?qid=4a68deb9-34fe-456c-a08c-c56f5b10f83b&amp;amp;trk=groups_items_see_more-0-b-ttl"&gt;here&lt;/A&gt;: "&lt;SPAN style="color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;"&gt;to take the differences between means of Treatment 1 and Treatment 2 at each time to evaluate departures from 0."&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-family: Arial, sans-serif;"&gt;2. Using GLIMMIX like &lt;SPAN style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1627" data-externalid="" data-presence="null" data-userid="455729" data-username="SteveDenham" href="https://communities.sas.com/people/SteveDenham" id="jive-45572924070056347686186" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;SteveDenham&lt;/A&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;wrote &lt;A _jive_internal="true" href="https://communities.sas.com/message/208922#208922"&gt;here&lt;/A&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-family: Arial, sans-serif;"&gt;I can't say, that everething is clear for me in second method, but it becouse of my low quality of knowledge of &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;MIXED and &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;GLIMMIX, so I feel, that it is the right way&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2014 07:47:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANCOVA-with-quot-Day-number-quot-as-covariate/m-p/187537#M9760</guid>
      <dc:creator>AndreyMyslivets</dc:creator>
      <dc:date>2014-08-22T07:47:31Z</dc:date>
    </item>
  </channel>
</rss>

