<?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: Flagging Site to site variations in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750799#M93213</link>
    <description>&lt;P&gt;This is what I am looking for. Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15063"&gt;@matth1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Apr 2024 17:28:08 GMT</pubDate>
    <dc:creator>Jackie_</dc:creator>
    <dc:date>2024-04-30T17:28:08Z</dc:date>
    <item>
      <title>Flagging Site to site variations</title>
      <link>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750730#M93200</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there a way to flag test parameters with site-to-site variations?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am aware of looking at the variability chart, but I am exploring ways to identify statistically and implement using jsl which would make analysis faster.&lt;/P&gt;&lt;P&gt;The thought is to create a column that indicates if the test parameter has site-to-site variations. Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:09:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750730#M93200</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2024-04-30T14:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Flagging Site to site variations</title>
      <link>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750760#M93203</link>
      <description>&lt;P&gt;Have you tried Response Screening (&lt;A href="https://www.youtube.com/watch?v=IoMYIGPuDKk" target="_blank"&gt;https://www.youtube.com/watch?v=IoMYIGPuDKk&lt;/A&gt;), &lt;A href="https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/response-screening.shtml#" target="_blank"&gt;https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/response-screening.shtml#&lt;/A&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 15:53:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750760#M93203</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-04-30T15:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Flagging Site to site variations</title>
      <link>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750778#M93204</link>
      <description>&lt;P&gt;Not sure if I understand exactly what you want, but you could use the builtin Oneway platform and extract the means comparison results? Something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
dt &amp;lt;&amp;lt; New Column( "PM_L1_Modified", set formula( If( :SITE == 1, :PM_L1 + 1, :PM_L1 ) ) );
cols1 = dt &amp;lt;&amp;lt; get column names( Continuous );

For( j = 1, j &amp;lt;= n items( cols1 ), j++, 
	ow = dt &amp;lt;&amp;lt; Oneway(
		Y( cols1[j] ),
		X( :SITE ),
		All Pairs( 1 ),
		Comparison Circles( 0 ),
		Invisible
	);

	level1 = (Report( ow )["Means Comparisons", "Comparisons for all pairs using Tukey-Kramer HSD", "Ordered Differences Report",
	String Col Box( "Level" )]) &amp;lt;&amp;lt; get();
	level2 = (Report( ow )["Means Comparisons", "Comparisons for all pairs using Tukey-Kramer HSD", "Ordered Differences Report",
	String Col Box( "- Level" )]) &amp;lt;&amp;lt; get();
	pval = (Report( ow )["Means Comparisons", "Comparisons for all pairs using Tukey-Kramer HSD", "Ordered Differences Report",
	String Col Box( "p-Value" )]) &amp;lt;&amp;lt; get();

	ow &amp;lt;&amp;lt; close window();
	p_count = 0;
	For( i = 1, i &amp;lt;= N Items( pval ), i++,
		If( pval[i] &amp;lt; 0.05,
			text = Substitute( "For __col__, sites __l1__ and __l2__ are statistically different",
				Expr( __col__ ), cols1[j],
				Expr( __l1__ ), level1[i],
				Expr( __l2__ ), level2[i]
			);
			Print( text );
			p_count++;
			// Do stuff here
		)
	);
	if( p_count == 0, print( char( cols1[j] ) || ": no statistically different sites" ) );
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then you'd get output like this:&lt;/P&gt;&lt;PRE&gt;...&lt;BR /&gt;"PM_L1: no statistically different sites"
"P1: no statistically different sites"
"M1: no statistically different sites"
"For PM_L1_Modified, sites 1 and 5 are statistically different"
"For PM_L1_Modified, sites 1 and 2 are statistically different"
"For PM_L1_Modified, sites 1 and 4 are statistically different"
"For PM_L1_Modified, sites 1 and 3 are statistically different"&lt;/PRE&gt;&lt;P&gt;I had to create a new column as none of the parameters in Semiconductor Capability seem to have a SITE dependancy!&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then do something interesting with the parameter and sites which are found to have statistically significant differences.&lt;/P&gt;&lt;P&gt;This is a very simple solution and could be optimised, or there may be a better JMP built-in way to get this info.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 16:18:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750778#M93204</guid>
      <dc:creator>matth1</dc:creator>
      <dc:date>2024-04-30T16:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Flagging Site to site variations</title>
      <link>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750799#M93213</link>
      <description>&lt;P&gt;This is what I am looking for. Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15063"&gt;@matth1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 17:28:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Flagging-Site-to-site-variations/m-p/750799#M93213</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2024-04-30T17:28:08Z</dc:date>
    </item>
  </channel>
</rss>

