<?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: select parts outside of limits in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354167#M60392</link>
    <description>Thank you. This works. Is there any manual way instead of script? if i have already selected multiple columns and plotted the distribution, is there any manual way to select failure parts?</description>
    <pubDate>Sat, 30 Jan 2021 19:57:35 GMT</pubDate>
    <dc:creator>tangxu</dc:creator>
    <dc:date>2021-01-30T19:57:35Z</dc:date>
    <item>
      <title>select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353122#M60248</link>
      <description>&lt;P&gt;I have multiple columns for which I have set limits. How can I select the rows that are outside the limits?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:25:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353122#M60248</guid>
      <dc:creator>tangxu</dc:creator>
      <dc:date>2023-06-10T23:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353161#M60250</link>
      <description>&lt;P&gt;I am assuming you want to do this selection using a script.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a script to select rows based upon the rows outside of spec limits for one variable&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

specs = dt:PNP1 &amp;lt;&amp;lt; get property("spec limits");

dt &amp;lt;&amp;lt; select where( dt:PNP1 &amp;lt;= specs["LSL"] | dt:PNP1 &amp;gt;= specs["USL"]);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is script for multiple columns&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

//colNames = dt &amp;lt;&amp;lt; get column names( continuous, string );
colNames = { "PNP1", "PNP3"};

For( i = 1, i &amp;lt;= N Items( colNames ), i++,
	specs = Column( dt, colNames[i] ) &amp;lt;&amp;lt; get property( "spec limits" );
	If( Try( Is Missing( specs["LSL"] ) ) == 0 &amp;amp; Try( Is Missing( specs["USL"] ) ) == 0,
		found = dt &amp;lt;&amp;lt; get rows where(
			as Column( dt, colNames[i] ) &amp;lt;= specs["LSL"] | as Column( dt, colNames[i] ) &amp;gt;= specs["USL"]
		);
		If( N Rows( found ) &amp;gt; 0,
			dt &amp;lt;&amp;lt; select rows(found);
		);
	);
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jan 2021 05:26:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353161#M60250</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-27T05:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353291#M60272</link>
      <description>&lt;P&gt;You can also accomplish this via the Process Capability platform.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
Process Capability(
	Process Variables( :NPN1, :PNP1, :PNP2 ),
	Moving Range Method( Average of Moving Ranges ),
	Overall Sigma Normalized Box Plots( 1 ),
	Select Out of Spec Values( 1 ),
	Goal Plot( 1 ),
	Capability Index Plot( 1 ),
	Process Performance Plot( 0 )
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jan 2021 15:25:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/353291#M60272</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2021-01-27T15:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354167#M60392</link>
      <description>Thank you. This works. Is there any manual way instead of script? if i have already selected multiple columns and plotted the distribution, is there any manual way to select failure parts?</description>
      <pubDate>Sat, 30 Jan 2021 19:57:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354167#M60392</guid>
      <dc:creator>tangxu</dc:creator>
      <dc:date>2021-01-30T19:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354168#M60393</link>
      <description>You can right click on the row state column and select ...select rows=&amp;gt;select where</description>
      <pubDate>Sat, 30 Jan 2021 21:00:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354168#M60393</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-30T21:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: select parts outside of limits</title>
      <link>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354458#M60433</link>
      <description>&lt;P&gt;If you are looking for a way to do this via the distribution platform, you can hold down the Ctrl key while clicking histogram bars of interest.&amp;nbsp; This will select the corresponding rows in the data table.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 12:46:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/select-parts-outside-of-limits/m-p/354458#M60433</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2021-02-01T12:46:32Z</dc:date>
    </item>
  </channel>
</rss>

