<?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 Performing one-way (or multiway) ANOVA on many variables without displaying graphs using JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522231#M74711</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to run a one-way ANOVA (and eventually multiway) on a table for a very large list of endpoints followup by a post-hoc test such as Dunnett's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For a large list of endpoints, displaying each graph is both slow and unpractical if one only needs the aggregated p-Values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way in JSL to only retrieve those values by bypassing the graph creation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:51:14 GMT</pubDate>
    <dc:creator>Sburel</dc:creator>
    <dc:date>2023-06-10T23:51:14Z</dc:date>
    <item>
      <title>Performing one-way (or multiway) ANOVA on many variables without displaying graphs using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522231#M74711</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to run a one-way ANOVA (and eventually multiway) on a table for a very large list of endpoints followup by a post-hoc test such as Dunnett's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For a large list of endpoints, displaying each graph is both slow and unpractical if one only needs the aggregated p-Values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way in JSL to only retrieve those values by bypassing the graph creation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:51:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522231#M74711</guid>
      <dc:creator>Sburel</dc:creator>
      <dc:date>2023-06-10T23:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Performing one-way (or multiway) ANOVA on many variables without displaying graphs using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522261#M74714</link>
      <description>&lt;P&gt;One can easily run the platform in an invisible mode, and then just output the results.&amp;nbsp; See below fhe script and the re&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
// Open Data Table: big class.jmp
// → Data Table( "big class" )
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

colNames = dt &amp;lt;&amp;lt; get column names( continuous );

ow = Oneway( invisible, Y( Eval( colNames ) ), X( :site ), Means( 1 ), Mean Diamonds( 1 ) );

Report( ow[1] )["Analysis of Variance"][Table Box( 1 )] &amp;lt;&amp;lt; make combined data table;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1657999471838.png" style="width: 826px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44047i487BCD8E0267B873/image-dimensions/826x477?v=v2" width="826" height="477" role="button" title="txnelson_0-1657999471838.png" alt="txnelson_0-1657999471838.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jul 2022 19:24:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522261#M74714</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-07-16T19:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Performing one-way (or multiway) ANOVA on many variables without displaying graphs using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522280#M74715</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not think about that way. It did the trick.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sebastien&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jul 2022 21:49:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522280#M74715</guid>
      <dc:creator>Sburel</dc:creator>
      <dc:date>2022-07-16T21:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Performing one-way (or multiway) ANOVA on many variables without displaying graphs using JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522368#M74721</link>
      <description>&lt;P&gt;&amp;nbsp;I also thing you should look into using the Response Screening platform.&amp;nbsp; It provides you the PValues plus additional stats.&amp;nbsp; It also has an interactive table script that will display the scatterplot for any selected variables.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1658071760531.png" style="width: 683px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44055iCCFDCDAAF4894E64/image-dimensions/683x391?v=v2" width="683" height="391" role="button" title="txnelson_0-1658071760531.png" alt="txnelson_0-1658071760531.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// Open Data Table: semiconductor capability.jmp
// → Data Table( "semiconductor capability" )
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

colNames = dt &amp;lt;&amp;lt; get column names( continuous );

Response Screening( 
	Y( Eval( colNames ) ), 
	X( :SITE ), 
	PValues Table on Launch( 1 ) 
	);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 15:30:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Performing-one-way-or-multiway-ANOVA-on-many-variables-without/m-p/522368#M74721</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-07-17T15:30:42Z</dc:date>
    </item>
  </channel>
</rss>

