<?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: print p-values of statistical analysis to a column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261889#M51275</link>
    <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;This did not work for me, it made a data table with only five of the several hundred tables, also the p-values were not organized properly&lt;/P&gt;</description>
    <pubDate>Tue, 28 Apr 2020 11:07:33 GMT</pubDate>
    <dc:creator>ezorlo</dc:creator>
    <dc:date>2020-04-28T11:07:33Z</dc:date>
    <item>
      <title>print p-values of statistical analysis to a column</title>
      <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261833#M51268</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;My data table has ~5000 rows with three columns: OTU ID, condition, Relative abundance&lt;/P&gt;&lt;P&gt;I performed a one way Y - X analysis with the designations: condition (X), Relative Abundance (Y) and OTU ID (By)&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the one-way analysis report I have to manually check each of the OTU ID for significance effect of condition in e.g. ttest or ANOVA&lt;/P&gt;&lt;P&gt;Is there a way to make JMP print a new column in my workbook with the p-value for the desired statistical test without going through the entire report (there are hundreds or even thousands of tests to look through)&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 09:19:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261833#M51268</guid>
      <dc:creator>ezorlo</dc:creator>
      <dc:date>2020-04-28T09:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: print p-values of statistical analysis to a column</title>
      <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261854#M51272</link>
      <description>&lt;P&gt;JMP generally makes it very easy to do this kind of thing, though (if you want to use a script) the details will depend on which test you want to use (more specifically, on the structure of the report that the platform generates). The script below is a simple example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

// Sample Data
dt1 = Open("$SAMPLE_DATA/Big Class.jmp");

// One way ANOVA with a 'By' group
ow = dt1 &amp;lt;&amp;lt; Oneway(	Y( :height ), X( :age ), Means( 1 ), Mean Diamonds( 1 ), By( :sex ));

// Find the table you want in the report, do a right-click and select 'Make Combined Data Table'
dt2 = Report(ow[1])[TableBox(2)] &amp;lt;&amp;lt; makeCombinedDataTable;
dt2 &amp;lt;&amp;lt; setName("Oneway ANOVA Results");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But just because something is easy does not make it good practice. If you are doing lots of statistical tests, I &lt;STRONG&gt;strongly&lt;/STRONG&gt; recommend that you read about &lt;A href="https://www.jmp.com/support/help/en/15.1/#page/jmp/overview-of-the-response-screening-platform.shtml" target="_self"&gt;Response Screening&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 10:26:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261854#M51272</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2020-04-28T10:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: print p-values of statistical analysis to a column</title>
      <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261869#M51274</link>
      <description>&lt;P&gt;Adding to&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt;&amp;nbsp;, just right-click on one of the tables with p-values and select &lt;STRONG&gt;Make Into Combined Table&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 10:46:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261869#M51274</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-04-28T10:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: print p-values of statistical analysis to a column</title>
      <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261889#M51275</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;This did not work for me, it made a data table with only five of the several hundred tables, also the p-values were not organized properly&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 11:07:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261889#M51275</guid>
      <dc:creator>ezorlo</dc:creator>
      <dc:date>2020-04-28T11:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: print p-values of statistical analysis to a column</title>
      <link>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261891#M51276</link>
      <description>&lt;P&gt;Thank you I basically went with response screening using my "By" column as a grouping variable and it printed a table with P-values for each grouping variable that I was able to filter for &amp;lt;0.05&lt;/P&gt;&lt;P&gt;This immensely helped!!&lt;/P&gt;&lt;P&gt;However... what is the default statistical test that is being run, i.e. what does the p-value correspond to if I dont select any options and just run the dialog?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 11:10:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/print-p-values-of-statistical-analysis-to-a-column/m-p/261891#M51276</guid>
      <dc:creator>ezorlo</dc:creator>
      <dc:date>2020-04-28T11:10:10Z</dc:date>
    </item>
  </channel>
</rss>

