<?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 Tukey's One Degree of Freedom for Non-Additivity in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Tukey-s-One-Degree-of-Freedom-for-Non-Additivity/m-p/626680#M82544</link>
    <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a professor and I am (slowly) incorporating new JMP Pro content into my chemistry courses. One topic I cover is Tukey's 1 degree of freedom test for nonadditivity when you have non-replicated factorials. Are there any alternatives to run this test with JMP Pro (I&amp;nbsp;haven't found anything online).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Rita&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 01:01:27 GMT</pubDate>
    <dc:creator>OmegaTiger493</dc:creator>
    <dc:date>2023-06-09T01:01:27Z</dc:date>
    <item>
      <title>Tukey's One Degree of Freedom for Non-Additivity</title>
      <link>https://community.jmp.com/t5/Discussions/Tukey-s-One-Degree-of-Freedom-for-Non-Additivity/m-p/626680#M82544</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a professor and I am (slowly) incorporating new JMP Pro content into my chemistry courses. One topic I cover is Tukey's 1 degree of freedom test for nonadditivity when you have non-replicated factorials. Are there any alternatives to run this test with JMP Pro (I&amp;nbsp;haven't found anything online).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Rita&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 01:01:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tukey-s-One-Degree-of-Freedom-for-Non-Additivity/m-p/626680#M82544</guid>
      <dc:creator>OmegaTiger493</dc:creator>
      <dc:date>2023-06-09T01:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tukey's One Degree of Freedom for Non-Additivity</title>
      <link>https://community.jmp.com/t5/Discussions/Tukey-s-One-Degree-of-Freedom-for-Non-Additivity/m-p/626842#M82553</link>
      <description>&lt;P&gt;I don't think there is any built-in way to get this test, but you can use some JSL to build it. The steps are: Fit your 2-way ANOVA model. Save the predicted values. Square them. Now fit the 2-way model again, but adding the squared values as a column. That test is your non-additive test. I have included a sample dataset with a script that does this. Here is the script that I used that is hard-coded for this example.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);

dt = Current Data Table();
// Launch platform: Fit Least Squares
dt = Current Data Table();
Mod1 = dt &amp;lt;&amp;lt; Fit Model(
	Y( :Impurity ),
	Effects( :Temp, :Pressure ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:Impurity &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 1 ),
		Parameter Estimates( 1 ), Lack of Fit( 0 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 1 ), Plot Regression( 0 ),
		Plot Residual by Predicted( 1 ), Plot Studentized Residuals( 0 ),
		Plot Effect Leverage( 1 ), Plot Residual by Normal Quantiles( 0 ),
		Box Cox Y Transformation( 0 )}
	), Invisible
);
mod1 &amp;lt;&amp;lt; Prediction Formula;
mod1 &amp;lt;&amp;lt; Close Window();


// New formula column: Pred Formula Impurity^2
dt &amp;lt;&amp;lt; New Formula Column(
	Operation( Category( "Transform" ), "Square" ),
	Columns( :Pred Formula Impurity )
);

// Change column name: Pred Formula Impurity^2 → Nonadd
dt:"Pred Formula Impurity^2"n &amp;lt;&amp;lt; Set Name( "Non-Additive Test" );


// Launch platform: Fit Least Squares
dt &amp;lt;&amp;lt; Fit Model(
	Y( :Impurity ),
	Effects( :Temp, :Pressure, :"Non-Additive Test"n ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:Impurity &amp;lt;&amp;lt; {Summary of Fit( 0 ), Analysis of Variance( 0 ),
		Parameter Estimates( 1 ), Sequential Tests( 1 ), Lack of Fit( 0 ), Scaled Estimates( 0 ),
		Effect Tests( 0 ),
		Plot Actual by Predicted( 0 ), Plot Regression( 0 ),
		Plot Residual by Predicted( 0 ), Plot Studentized Residuals( 0 ),
		Plot Effect Leverage( 0 ), Plot Residual by Normal Quantiles( 0 ),
		Box Cox Y Transformation( 0 )}
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Apr 2023 15:55:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tukey-s-One-Degree-of-Freedom-for-Non-Additivity/m-p/626842#M82553</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2023-04-27T15:55:10Z</dc:date>
    </item>
  </channel>
</rss>

