<?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 Capability study  doesnt display all parameters from Stdf file in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390075#M64021</link>
    <description>&lt;P&gt;i checked the data seem correct. no empty columns or anything i&amp;nbsp; also tried using&amp;nbsp; this script&amp;nbsp; instead of doing it interactively&amp;nbsp; and had the same issue. the&amp;nbsp; summary report drops&amp;nbsp; some test too. im unsure if im picking the correct option&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="steo45_14-1622679654053.png" style="width: 1153px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33207iB10D329D46921DB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steo45_14-1622679654053.png" alt="steo45_14-1622679654053.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );

// Create a complex name for a column to make sure it will be
// processed correctly
dt:NPN1 &amp;lt;&amp;lt; set name( "NPN1-7/Best" );

// Get a list of columns to be used
colList = dt &amp;lt;&amp;lt; get column names( continuous, string );

ProcessFunc = Function( {TheList},
// Move them into a single literal string of the format required
// for the Process Variables element in the Process Capability
// platform
TheVars = ":Name(\!"" || TheList[1] || "\!")";
For( i = 2, i &amp;lt;= 10, i++,
TheVars = TheVars || "," || ":Name(\!"" || TheList[i] || "\!")"
);

// Run the Process Capability platform, using the literal
// string "TheVars"
Eval(Parse("dt &amp;lt;&amp;lt; Process Capability(
Process Variables( "|| TheVars|| ") ), Capability Index Plot( 1 ), Within Sigma Capability Summary Report(1)
);"));
);

Return = ProcessFunc( colList );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 03 Jun 2021 01:27:50 GMT</pubDate>
    <dc:creator>steo45</dc:creator>
    <dc:date>2021-06-03T01:27:50Z</dc:date>
    <item>
      <title>Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390013#M64014</link>
      <description>&lt;P&gt;i have a stdf file and when doing process capability study. for some reasons&amp;nbsp; some parameters are missing. Any idea how to&amp;nbsp; fix it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:31:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390013#M64014</guid>
      <dc:creator>steo45</dc:creator>
      <dc:date>2023-06-10T23:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390024#M64015</link>
      <description>I would start by examining the JMP data table after you have inputted it, using whatever STDF reader you are using.  Please verify that columns are not empty and that the columns that you want to be analyzed are numeric and continuous.</description>
      <pubDate>Wed, 02 Jun 2021 20:34:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390024#M64015</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-06-02T20:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390075#M64021</link>
      <description>&lt;P&gt;i checked the data seem correct. no empty columns or anything i&amp;nbsp; also tried using&amp;nbsp; this script&amp;nbsp; instead of doing it interactively&amp;nbsp; and had the same issue. the&amp;nbsp; summary report drops&amp;nbsp; some test too. im unsure if im picking the correct option&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="steo45_14-1622679654053.png" style="width: 1153px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33207iB10D329D46921DB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steo45_14-1622679654053.png" alt="steo45_14-1622679654053.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );

// Create a complex name for a column to make sure it will be
// processed correctly
dt:NPN1 &amp;lt;&amp;lt; set name( "NPN1-7/Best" );

// Get a list of columns to be used
colList = dt &amp;lt;&amp;lt; get column names( continuous, string );

ProcessFunc = Function( {TheList},
// Move them into a single literal string of the format required
// for the Process Variables element in the Process Capability
// platform
TheVars = ":Name(\!"" || TheList[1] || "\!")";
For( i = 2, i &amp;lt;= 10, i++,
TheVars = TheVars || "," || ":Name(\!"" || TheList[i] || "\!")"
);

// Run the Process Capability platform, using the literal
// string "TheVars"
Eval(Parse("dt &amp;lt;&amp;lt; Process Capability(
Process Variables( "|| TheVars|| ") ), Capability Index Plot( 1 ), Within Sigma Capability Summary Report(1)
);"));
);

Return = ProcessFunc( colList );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Jun 2021 01:27:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390075#M64021</guid>
      <dc:creator>steo45</dc:creator>
      <dc:date>2021-06-03T01:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390087#M64022</link>
      <description>&lt;P&gt;There are 2 issues.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Your script limits the output to 10 column
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( i = 2, i &amp;lt;= 10, i++,
		TheVars = TheVars || "," || ":Name(\!"" || TheList[i] || "\!")"
	)
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Not all of the columns have both USL and LSL assigned&lt;/LI&gt;
&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="usllsl.PNG" style="width: 223px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33208i82D233B09E64B40E/image-size/large?v=v2&amp;amp;px=999" role="button" title="usllsl.PNG" alt="usllsl.PNG" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 01:44:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390087#M64022</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-06-03T01:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390231#M64035</link>
      <description>&lt;P&gt;thanks for the reply jim.&amp;nbsp; i'm not sure what i'm doing wrong with this one.i tried to do it manually but it still looks like its skipping about 200 processes. there are some process limits missing about 8 from what i see. however the summary comes in with&amp;nbsp; more than 518 missing including 6 that are missing limits&lt;/P&gt;&lt;P&gt;Total processes: 1741&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total no limits : 8&lt;/P&gt;&lt;P&gt;Total Process in summary: 1223&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="steo45_1-1622744719058.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33223i30E5A5FE01D53A04/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steo45_1-1622744719058.png" alt="steo45_1-1622744719058.png" /&gt;&lt;/span&gt;&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>Sat, 05 Jun 2021 01:26:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390231#M64035</guid>
      <dc:creator>steo45</dc:creator>
      <dc:date>2021-06-05T01:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Process Capability study  doesnt display all parameters from Stdf file</title>
      <link>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390318#M64041</link>
      <description>&lt;P&gt;My examination of your included data shows that 248 columns that are not analyzed in the Process Capability platform are being excluded because they have zero for all of their rows.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 21:48:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Process-Capability-study-doesnt-display-all-parameters-from-Stdf/m-p/390318#M64041</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-06-03T21:48:20Z</dc:date>
    </item>
  </channel>
</rss>

