<?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: Normal quantile transformation in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/512954#M74038</link>
    <description>&lt;P&gt;Transformations can be very helpful. You might try using the Box-Cox Transformation built into Fit Least Squares, which can easily perform the 3-way ANOVA. I suggest you try this general solution first before resorting to the more specialized solution that might not be necessary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the JMP Help about this &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/box-cox-y-transformation.shtml#ww910630" target="_self"&gt;transformation&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jun 2022 13:17:29 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2022-06-23T13:17:29Z</dc:date>
    <item>
      <title>Normal quantile transformation</title>
      <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/512513#M74006</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I would like to do a normal quantile transformation for my data, because it is not normally distributed and I cannot do a 3-way ANOVA on it.&lt;/P&gt;&lt;P&gt;I read a suggestion to do the normal quantile transformation and then run the 3-way ANOVA on this.&lt;/P&gt;&lt;P&gt;First, is this appropriate?&lt;/P&gt;&lt;P&gt;Second, can I do this analysis in JMP?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 00:51:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/512513#M74006</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2023-06-09T00:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Normal quantile transformation</title>
      <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/512954#M74038</link>
      <description>&lt;P&gt;Transformations can be very helpful. You might try using the Box-Cox Transformation built into Fit Least Squares, which can easily perform the 3-way ANOVA. I suggest you try this general solution first before resorting to the more specialized solution that might not be necessary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the JMP Help about this &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/box-cox-y-transformation.shtml#ww910630" target="_self"&gt;transformation&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 13:17:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/512954#M74038</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-06-23T13:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Normal quantile transformation</title>
      <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/514094#M74134</link>
      <description>&lt;P&gt;Thanks, Mark. I have a couple more questions regarding your response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, the link attached shows that the Box-Cox transformation is only appropriate for positive Y responses. Some of the data in my current work are negative values. What then could be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, for the ones that are all positive values, when I get the box-cox transformation section, what exactly do I deduce from this? Reading from the link, it says we can save transformed data. So when I save transformed data, is this what I use going forward for the Tukey test for significant differences?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 06:01:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/514094#M74134</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2022-06-25T06:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Normal quantile transformation</title>
      <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/514126#M74138</link>
      <description>&lt;P&gt;I think what you are asking about is related to &lt;A href="https://en.wikipedia.org/wiki/Van_der_Waerden_test" target="_self"&gt;Van der Waerden test&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though the test was developed for one-way ANOVA, but I think it should work for three-way ANOVA as well, given the null hypothesis is that none of the effects are significant (main and interactions). I am not sure it still work if your hypotheses are sequential.&lt;/P&gt;
&lt;P&gt;To actually do it, you need ranks of the observations, then map the ranks to normal quantiles. See the following code snip to see the steps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt=Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "Height Rank", Formula( Col Rank( :height, &amp;lt;&amp;lt;tie( "average" ) ) ) );
New Column( "Normal Quantile Transform", Formula( normal quantile(:Height Rank/(nrow(dt)+1) ) ) );
dt &amp;lt;&amp;lt; Oneway( Y( :Normal Quantile Transform ), X( :sex ), Means( 1 ) );
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 15:03:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/514126#M74138</guid>
      <dc:creator>peng_liu</dc:creator>
      <dc:date>2022-06-25T15:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Normal quantile transformation</title>
      <link>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/516874#M74341</link>
      <description>&lt;P&gt;You can also do normal quantile transformation using the Distribution platform.&amp;nbsp; For large tables this can be faster than using column formulas.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SamGardner_0-1656696951894.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43739i8DC13743D4603D38/image-size/large?v=v2&amp;amp;px=999" role="button" title="SamGardner_0-1656696951894.png" alt="SamGardner_0-1656696951894.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 12:34:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Normal-quantile-transformation/m-p/516874#M74341</guid>
      <dc:creator>SamGardner</dc:creator>
      <dc:date>2022-07-05T12:34:54Z</dc:date>
    </item>
  </channel>
</rss>

