<?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: How can I achieve automated analysis through scripting languages in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-achieve-automated-analysis-through-scripting-languages/m-p/768915#M94925</link>
    <description>&lt;P&gt;Here is an example that should give you an idea of how to code the issue&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

ow = Oneway(
	Y( :height ),
	X( :age ),
	Std Dev Lines( 1 ),
	Unequal Variances( 1 )
);

// Get the p-value from the Levene results
value = (Report( ow )["Tests that the Variances are Equal",
Number Col Box( "Prob &amp;gt; F" )] &amp;lt;&amp;lt; get)[3];

// If the Levene result is less than 0.05 
If( value &amp;lt; 0.05,
	ow &amp;lt;&amp;lt; Equivalence Tests( 1, 0.05, "Unequal Variances", "Equivalence" ),
	ow &amp;lt;&amp;lt; Equivalence Tests( 1, 0.05, "Pooled Variance", "Equivalence" );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 27 Jun 2024 12:07:53 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-06-27T12:07:53Z</dc:date>
    <item>
      <title>How can I achieve automated analysis through scripting languages</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-achieve-automated-analysis-through-scripting-languages/m-p/768879#M94917</link>
      <description>&lt;P&gt;I have been getting started with scripting languages recently, and I want to use editing languages to automate the equivalence testing of reduced models. However, after the equivariance test, it is unclear how to use script language editing to enable the software to select equivariance or unequal variance equivalence tests based on Levene results&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LikelihoodFawn8_0-1719476817714.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65643iCD0E674A71AE9116/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LikelihoodFawn8_0-1719476817714.png" alt="LikelihoodFawn8_0-1719476817714.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 08:27:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-achieve-automated-analysis-through-scripting-languages/m-p/768879#M94917</guid>
      <dc:creator>LikelihoodFawn8</dc:creator>
      <dc:date>2024-06-27T08:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I achieve automated analysis through scripting languages</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-achieve-automated-analysis-through-scripting-languages/m-p/768915#M94925</link>
      <description>&lt;P&gt;Here is an example that should give you an idea of how to code the issue&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

ow = Oneway(
	Y( :height ),
	X( :age ),
	Std Dev Lines( 1 ),
	Unequal Variances( 1 )
);

// Get the p-value from the Levene results
value = (Report( ow )["Tests that the Variances are Equal",
Number Col Box( "Prob &amp;gt; F" )] &amp;lt;&amp;lt; get)[3];

// If the Levene result is less than 0.05 
If( value &amp;lt; 0.05,
	ow &amp;lt;&amp;lt; Equivalence Tests( 1, 0.05, "Unequal Variances", "Equivalence" ),
	ow &amp;lt;&amp;lt; Equivalence Tests( 1, 0.05, "Pooled Variance", "Equivalence" );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jun 2024 12:07:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-achieve-automated-analysis-through-scripting-languages/m-p/768915#M94925</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-06-27T12:07:53Z</dc:date>
    </item>
  </channel>
</rss>

