<?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: Cpk Analysis for many parameters in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188779#M40740</link>
    <description>&lt;P&gt;Thanks Ian. I am not aware of this awesome JMP feature!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way is that possible to change the process performance graph quadrant definition? Seem like by default, the stability ratio set as 1.5 and ppk set as 2.0. How can i change that ? Change the reference line will not change the quadrant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="process_screening.png" style="width: 891px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/16617i94365A8AF3285B3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="process_screening.png" alt="process_screening.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2019 00:57:38 GMT</pubDate>
    <dc:creator>OneNorthJMP</dc:creator>
    <dc:date>2019-03-22T00:57:38Z</dc:date>
    <item>
      <title>Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188283#M40702</link>
      <description>&lt;P&gt;I understand we can get single or multiple parameters Cpk analysis by using the Process Capability. But that feature is useful to dive in to few parameters. But i need to run hundreds of parameters for Cpk and sort them ascendingly. Then i only check those parameters with low Cpk and look into more details like process capacility. Any idea how to achieve that?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 03:00:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188283#M40702</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2019-03-21T03:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188297#M40703</link>
      <description>&lt;P&gt;Here is one way to get you started.&amp;nbsp; It will work with any number of columns.&amp;nbsp; It does make the assumption that the Spec Limits are embedded into the data columns, as Spec Limit column properties&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
// Open a sample data table that has the Column Property of "Spec Limits" set
dt=Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

// Create a List that has all of the columns that need to be processed
colNamesList = dt &amp;lt;&amp;lt; Get Column Names( String, continuous );

// Start to Build the command string to run all of the outputs
theExpr = "dist = dt &amp;lt;&amp;lt; Distribution( invisible,";

// Loop across all of the required columns to generate the Cpks
For( i = 1, i&amp;lt;=Nitems(colNamesList), i++,
theExpr = theExpr || "Continuous Distribution( Column( " || colNamesList[i] || ")),";
);
// Finish up the command string 
theExpr = TheExpr || ");";
eval(Parse(theExpr));

// Create the data table with all of the capability stats
dtCap = report(Dist)["Long Term Sigma"][TableBox(1)]&amp;lt;&amp;lt;Make combined data table;

// Cleanup the used space
report(dist) &amp;lt;&amp;lt; close window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Mar 2019 05:52:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188297#M40703</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-03-21T05:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188321#M40708</link>
      <description>&lt;P&gt;And you should also take a close look at the &lt;A href="https://www.jmp.com/support/help/14-2/process-screening.shtml" target="_self"&gt;Process Screening&lt;/A&gt; platform. It was built for this kind of situation. Also see this very recent &lt;A href="https://community.jmp.com/t5/Discovery-Summit-Europe-2019/Large-Scale-Process-Monitoring-Using-JMP-2019-EU-TUT-069/ta-p/110080" target="_self"&gt;presentation&lt;/A&gt; by&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6898"&gt;@Laura_Lancaster&lt;/a&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 09:50:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188321#M40708</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2019-03-21T09:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188323#M40709</link>
      <description>Ian's is a better solution</description>
      <pubDate>Thu, 21 Mar 2019 10:10:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188323#M40709</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-03-21T10:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188779#M40740</link>
      <description>&lt;P&gt;Thanks Ian. I am not aware of this awesome JMP feature!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way is that possible to change the process performance graph quadrant definition? Seem like by default, the stability ratio set as 1.5 and ppk set as 2.0. How can i change that ? Change the reference line will not change the quadrant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="process_screening.png" style="width: 891px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/16617i94365A8AF3285B3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="process_screening.png" alt="process_screening.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 00:57:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188779#M40740</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2019-03-22T00:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cpk Analysis for many parameters</title>
      <link>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188781#M40742</link>
      <description>&lt;P&gt;I got it. I can change the boundary by red triangle -&amp;gt; performance graph boundaries.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 01:30:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cpk-Analysis-for-many-parameters/m-p/188781#M40742</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2019-03-22T01:30:01Z</dc:date>
    </item>
  </channel>
</rss>

