<?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: which transformation to choose  if the data is not normal distributed and lognormal does not hel in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763227#M37256</link>
    <description>&lt;P&gt;The key to all of this is in&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60873"&gt;@jiltao&lt;/a&gt;&amp;nbsp;'s post:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;FONT size="5"&gt;Constant variance is never one of the model assumptions in PROC MIXED / PROC GLIMMIX&lt;/FONT&gt;.&amp;nbsp;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You model the heterogeneity, and stop testing for it, or even really examining it.&amp;nbsp; The assumption of homogeneous variance is NOT important in mixed model analyses.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SteveDenham&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Aug 2021 13:05:13 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2021-08-23T13:05:13Z</dc:date>
    <item>
      <title>which transformation to choose  if the data is not normal distributed and lognormal does not help</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762922#M37239</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=DF_digestibility; 
  class treatment block;
  model fIDFdigestibility = treatment/dist=lognormal; 
  random block; 
  lsmeans treatment/tdiff lines;
  ods output lsmeans=third;
  covtest "block=0" 0 .;
  output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;
  title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";
run;
data BackTransformedData; 
  set third;
  btlsmean = exp(estimate) ;
  btse_mean = exp(estimate)*stderr;
run;
proc print data=second;
run;
proc sgplot data=second;
  scatter y=smresid x=pred;
  refline 0;
run;
proc sgplot data=second;
  scatter y=smresid x=treatment;
  refline 0;
run;
proc sgplot data=second;
  vbox smresid/group=treatment datalabel;
run;
proc sgscatter data=second;
  plot sresid*(pred treatment block);
run;
proc univariate data=second normal plot;
  var sresid;
  histogram sresid / normal kernel;
run;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kellychan84_0-1629486415751.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62785i15D7BADB38A4E3DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kellychan84_0-1629486415751.png" alt="kellychan84_0-1629486415751.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Aug 2021 19:07:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762922#M37239</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-20T19:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762936#M37241</link>
      <description>&lt;P&gt;The variable&amp;nbsp;fIDFdigestibility does not have to be normally distributed in order to be modeled properly by PROC GLIMMIX. If you want to use a normal distribution when fitting the model, only the RESIDUALS have to be normally distributed. Naturally, if you are fitting the model based upon some other (non-normal) distribution, then you need to have fIDFdigestibility follow that distribution. It's really not clear if you intend to fit the model assuming a normal distribution.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 19:30:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762936#M37241</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-08-20T19:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762947#M37242</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp; thank you for your reply. You are right! It is the &lt;SPAN&gt;RESIDUALS that have to be normally distributed. I think t&lt;/SPAN&gt;he normality result from SAS I attached is for the&lt;SPAN&gt;&amp;nbsp;RESIDUALS.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Let me explain my question in another way. I want to transform my data here because the RESIDUALS are showing unequal variance between two treatment groups when I run the homogeneity test (code below).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc glimmix data=DF_digestibility;&lt;BR /&gt;class treatment block;&lt;BR /&gt;model fIDFdigestibility = treatment;&lt;BR /&gt;random block;&amp;nbsp;&lt;BR /&gt;random _residual_/group=treatment;&amp;nbsp;&lt;BR /&gt;lsmeans treatment/tdiff lines;&lt;BR /&gt;covtest homogeneity;&amp;nbsp;&lt;BR /&gt;output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;&lt;BR /&gt;title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kellychan84_0-1629488931520.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62786i0B4FAF23590107A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kellychan84_0-1629488931520.png" alt="kellychan84_0-1629488931520.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 19:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762947#M37242</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-20T19:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762959#M37243</link>
      <description>&lt;P&gt;The COVTEST result tells you that the variances are different among the treatment groups. So your RANDOM _RESIDUAL_ / GROUP=TREATMENT; statement is necessary, because it fits an unequal variance model to your data. You do not need to do data transformations. Constant variance is never one of the model assumptions in PROC MIXED / PROC GLIMMIX. You just model it, which is what your RANDOM _RESIDUAL_ statement does.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 20:10:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762959#M37243</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-08-20T20:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762974#M37244</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60873"&gt;@jiltao&lt;/a&gt;&amp;nbsp;Thank you for your answer. I am still confusing.&lt;/P&gt;&lt;P&gt;If I find out the variances between the two treatment groups are unequal, am I supposed to transform them before I compare them by F test? The unequal covariances are also indicated in the below plots as data are showing some patterns or skewed to one side.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kellychan84_0-1629491731446.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62788i7B5AA1A693C71F04/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kellychan84_0-1629491731446.png" alt="kellychan84_0-1629491731446.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kellychan84_1-1629491746997.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62789iE6328036C4D8750D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kellychan84_1-1629491746997.png" alt="kellychan84_1-1629491746997.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kellychan84_2-1629491807613.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62790i1814E7BD30518CE7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kellychan84_2-1629491807613.png" alt="kellychan84_2-1629491807613.png" /&gt;&lt;/span&gt;&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>Fri, 20 Aug 2021 20:38:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762974#M37244</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-20T20:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762980#M37245</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/339127"&gt;@kellychan84&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I cannot say it better than&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60873"&gt;@jiltao&lt;/a&gt;&amp;nbsp;2 posts above (unequal variance model), but maybe you understand it better if&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;tells you the same (&lt;SPAN&gt;heterogeneous variance model)&lt;/SPAN&gt;.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;See here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-test-for-equal-variances-in-PROC-MIXED/td-p/170877" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-test-for-equal-variances-in-PROC-MIXED/td-p/170877&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 21:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/762980#M37245</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-20T21:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763227#M37256</link>
      <description>&lt;P&gt;The key to all of this is in&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60873"&gt;@jiltao&lt;/a&gt;&amp;nbsp;'s post:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;FONT size="5"&gt;Constant variance is never one of the model assumptions in PROC MIXED / PROC GLIMMIX&lt;/FONT&gt;.&amp;nbsp;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You model the heterogeneity, and stop testing for it, or even really examining it.&amp;nbsp; The assumption of homogeneous variance is NOT important in mixed model analyses.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SteveDenham&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 13:05:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763227#M37256</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-08-23T13:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763231#M37257</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;Thank you very much for your answer, Steve! I was told in my statistical class that you should always check your residuals (random,&amp;nbsp;independent of treatment and design effects, homogenous) before we look at the results. And if you can see some patterns in your residuals, you should transform your data to a better model before you can compare the treatment effect. I did see some patterns in the residuals in this specific data set. What are your suggestions on this? Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 13:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763231#M37257</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-23T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763240#M37258</link>
      <description>&lt;P&gt;What you learned in class is appropriate for linear models, but not for mixed models.&amp;nbsp; This code that you ran:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=DF_digestibility;
class treatment block;
model fIDFdigestibility = treatment;
random block; 
random _residual_/group=treatment; 
lsmeans treatment/tdiff lines;
covtest homogeneity; 
output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;
title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is spot-on.&amp;nbsp; You have accounted for the lack of homogeneity in the two groups with the random _residual_/group=treatment.&amp;nbsp; You don't need to transform if heterogeneity was your only concern.&amp;nbsp; But there is something else happening I think.&amp;nbsp; Your response is a percent, based on the ratio of two continuous variables and is contained in the open interval from 0 to 1.&amp;nbsp; I would recommend a fit with a beta distribution, such as this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=DF_digestibility;
class treatment block;
model fIDFdigestibility = treatment/dist=beta;
random block; 
random _residual_/group=treatment; 
lsmeans treatment/diff lines ilink;
covtest homogeneity; 
output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;
title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That should take care of your concerns (at least based on the shared box plot).&amp;nbsp; The default link for a beta distribution is logistic (so I would suppose that the transformation to choose is logistic).&amp;nbsp; However, it makes more sense to talk about the distribution in this case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wouldn't be surprised if the COVTEST was not significant for your data, assuming a beta distribution..&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>Mon, 23 Aug 2021 13:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763240#M37258</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-08-23T13:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763247#M37259</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;! very clear explanation!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I consult you with one more question? If the result is showing equal variance, in this case, can I use the following code without " random _residual_ / group =treatment" and " covtest homogeneity ".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc glimmix data=DF_digestibility;
class treatment block;
model fIDFdigestibility = treatment /dist=beta; ;
random block; 
lsmeans treatment/diff lines ilink;
output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;
title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 14:18:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763247#M37259</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-23T14:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763251#M37260</link>
      <description>&lt;P&gt;Yes, that is often the direction taken.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a note, I would imagine that no substantial differences in the results are noticeable whether those lines are kept in or removed.&amp;nbsp; My feeling here is to always assume that there is some heterogeneity in variance between groups, and it is worth keeping the code in to get a more empirical estimate of the variability within groups.&amp;nbsp; On the other hand, dropping that code almost always results in a more stable system of the mixed model equations, eliminating Hessian issues and nonpositive G matrix concerns in many cases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 14:29:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763251#M37260</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-08-23T14:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763276#M37266</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are right, adding or removing that coding did not change the results much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, when I run the code with " dist=beta", it turned out an error: "&lt;SPAN&gt;ERROR: Invalid or missing data." I don't know how to fix this. My response is digestibility which is listed as 1-100% instead of 0-1, does it matter?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=DF_digestibility;
class treatment block;
model fIDFdigestibility = treatment/dist=beta;
random block; 
random _residual_/group=treatment; 
lsmeans treatment/diff lines ilink;
covtest homogeneity; 
output out=second predicted=pred residual=resid residual(noblup)=mresid student=sresid student(noblup)=smresid;
title "1-Fecal Insoluble Dietary Fiber Digestibility (%) ANOVA Results";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 15:54:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763276#M37266</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-23T15:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763285#M37267</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/339127"&gt;@kellychan84&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it matters!&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Beta regression is used for proportions and therefore the response variable should be between 0 and 1, noninclusive. Values outside this range are not used in the analysis in PROC GLIMMIX.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Good luck with your analysis,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 16:22:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763285#M37267</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-23T16:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763288#M37268</link>
      <description>&lt;P&gt;Following up on&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;'s remark - divide all of your response values by 100 to get them out of percentage units and into grams digested/grams consumed units (kg digested/kg consumed for large animals).&amp;nbsp; You can do this inside PROC GLIMMIX, but I recommend doing it in a DATA step prior to running PROC GLIMMIX.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 16:37:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763288#M37268</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-08-23T16:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763291#M37269</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 16:38:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763291#M37269</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-23T16:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: which transformation to choose  if the data is not normal distributed and lognormal does not hel</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763292#M37270</link>
      <description>&lt;P&gt;Sounds great, thank you so much for all your help! I really appreciate it!!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 16:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/which-transformation-to-choose-if-the-data-is-not-normal/m-p/763292#M37270</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-08-23T16:39:12Z</dc:date>
    </item>
  </channel>
</rss>

