<?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: Process screening platform change between JMP 15 and JMP16 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421992#M67098</link>
    <description>&lt;P&gt;The title is indeed incorrect it is Response screening issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As mentionned by Jthi, I can do a script that will test jmp version, but I would like to avoid it...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't undestand the way we can assign names to table generated. I used to do as Txnelson, but it seems not robust...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jérôme&lt;/P&gt;</description>
    <pubDate>Wed, 29 Sep 2021 11:55:46 GMT</pubDate>
    <dc:creator>ptijerome</dc:creator>
    <dc:date>2021-09-29T11:55:46Z</dc:date>
    <item>
      <title>Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421947#M67085</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I use the process screening platform in a script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;S = Response Screening( Y( Eval( Expr( YParamList ) ) ), X( :Split ), practical difference portion( 0.05 ),save compare means );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then I use the output table to draw&amp;nbsp; plots of significant parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However since we use JMP16 it doesn't work well. It seems that the name of table, the order of tables (the active table after execution is not the same) and even the name in the column have been modified. I do not find a solution to make it work both on JMP15 and JMP16, since the name and the order of the table have been modified together.&lt;/P&gt;&lt;P&gt;It is annoying since only part of the users have migrated to JMP16.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jérôme&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 19:57:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421947#M67085</guid>
      <dc:creator>ptijerome</dc:creator>
      <dc:date>2023-06-09T19:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421954#M67086</link>
      <description>&lt;P&gt;Definitely not the optimal solution, but you could implement different approaches for different versions of JMP. You can get the JMP version with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;JMP Version()&lt;BR /&gt;//Word(1, JMP Version(), ".");&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 09:05:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421954#M67086</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-09-29T09:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421970#M67091</link>
      <description>&lt;P&gt;I believe the following code will work for both JMP 15 and JMP 16 and will return the data table references consistant.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;S = Response Screening(
	Y( Eval( Expr( YParamList ) ) ),
	X( :Split ),
	practical difference portion( 0.05 )
);
Wait( 0 );
s &amp;lt;&amp;lt; save compare means;
dtCompare = Current Data Table();
dtPValues = Data Table( "PValues" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now concerning the stated name changes.&amp;nbsp; I did not find any columns with different names when comparing between JMP 15 and JMP 16.&amp;nbsp; What specifically did you find different?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 10:37:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421970#M67091</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-09-29T10:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421979#M67092</link>
      <description>&lt;P&gt;Just to be sure we are talking about the same thing: In the title you mentioned process screening, but in the script you use response screening. Are you sure you have the correct script added? Or is the title incorrect.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, one way you could use to address different versions is what was mentioned in the first comment, check for the version used and then use the scripts for each version, e.g. using a match/if-else/try construct. Usually the scripts are version robust, however sometimes the platform report changes and then the result would look different. You may want to check the log in JMP 15 and 16 to see if there are any warnings or other messages, too.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 10:54:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421979#M67092</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2021-09-29T10:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421990#M67096</link>
      <description>&lt;P&gt;For the column name :&lt;/P&gt;&lt;P&gt;- in JMP15 the Compare table give name such as Leveli and Levelj.&lt;/P&gt;&lt;P&gt;- In JMP16 it is Niveau(x)i, Niveau(y)i.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same for Data Values table it is called once "Pvalues" and then "Pvaleurs"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well both version are installed in French, but they do not behave the same&lt;/P&gt;&lt;P&gt;Maybe it is a French Translation problem&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 11:50:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421990#M67096</guid>
      <dc:creator>ptijerome</dc:creator>
      <dc:date>2021-09-29T11:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Process screening platform change between JMP 15 and JMP16</title>
      <link>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421992#M67098</link>
      <description>&lt;P&gt;The title is indeed incorrect it is Response screening issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As mentionned by Jthi, I can do a script that will test jmp version, but I would like to avoid it...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't undestand the way we can assign names to table generated. I used to do as Txnelson, but it seems not robust...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jérôme&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 11:55:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-screening-platform-change-between-JMP-15-and-JMP16/m-p/421992#M67098</guid>
      <dc:creator>ptijerome</dc:creator>
      <dc:date>2021-09-29T11:55:46Z</dc:date>
    </item>
  </channel>
</rss>

