<?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: Apply Column Spec Limits based on Row Conditions in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/296692#M55779</link>
    <description>&lt;P&gt;I am not quite sure what you mean when you are specifying Y().&amp;nbsp; Do you want to have the user pop up the dialog entry window, with the Y values not selected, and allow the users to select the Y columns to use???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Sep 2020 18:46:50 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-09-01T18:46:50Z</dc:date>
    <item>
      <title>Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286969#M55381</link>
      <description>&lt;P&gt;I am seeking some help with whether or not JMP is capable of applying Column Spec Limits based on row conditions and if so how would one go about do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached is a sample table: The key parameters are :part_number, :set_id, :band1, X__57_AVG, X__58_AVG and X__59_AVG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;:part_number, :band1 and :set_id are the row (test) conditions while the other 3 are the results from the test.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also attached the sample spec table..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:35:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286969#M55381</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2023-06-09T23:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286991#M55382</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;JMP only allows 1 set of Spec Limits per column. So what you would need to do is to split the columns in the data table based upon id_column, set_id, band and part_number, and apply the limits to those columns.&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;If this does not allow you to perform the analyses and graphics you need, then at least for the graphical component, one can write JSL that can retrieve and display the Spec Limits as required.&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1450"&gt;@tonya_mauldin&lt;/a&gt;&amp;nbsp;answer below&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 19:17:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286991#M55382</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-20T19:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286997#M55386</link>
      <description>&lt;P&gt;Thank you very much for the information..&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 15:50:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/286997#M55386</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2020-08-20T15:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287013#M55389</link>
      <description>&lt;P&gt;You do not need to split your data table.&amp;nbsp; You can use Process Screening.&amp;nbsp; However, there are several problems you will need to fix first.&lt;/P&gt;
&lt;P&gt;1) Your limits table uses lowercase v13_0 and the data table uses uppercase V13_0.&amp;nbsp; These will need to match.&amp;nbsp; It is case sensitive.&lt;/P&gt;
&lt;P&gt;2) The column in your data table is called band1, but the same column in the limits tables is called band.&amp;nbsp; They should be called the same thing.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can run the following code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Process Screening(
    Y( :X__57_AVG, :X__58_AVG, :X__59_AVG ),
    Grouping( :part_number, :set_id, :band1 ),
    Control Chart Type( "Indiv and MR" ),
    Use Limits Table(
        1,
        Data Table( "sample_SpecLimits" ),
        Process Variables( :id_column ),
        Grouping( :part_number, :set_id, :band1 ),
        LSL( :LSL ),
        USL( :USL ),
        Go
    )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a blog post on this very topic.&amp;nbsp;&lt;LI-MESSAGE title="Process specification limits that differ based on a grouping column" uid="36656" url="https://community.jmp.com/t5/JMPer-Cable/Process-specification-limits-that-differ-based-on-a-grouping/m-p/36656#U36656" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 19:13:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287013#M55389</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2020-08-20T19:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287020#M55390</link>
      <description>This is great......I will count your response as tthe new item about JMP that I learned today</description>
      <pubDate>Thu, 20 Aug 2020 19:38:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287020#M55390</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-20T19:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287079#M55407</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1450"&gt;@tonya_mauldin&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Ditto Jim's comment. Very cool!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 06:56:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287079#M55407</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2020-08-21T06:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287276#M55456</link>
      <description>&lt;P&gt;Very much appreciated. I can't wait to try it..&amp;nbsp; I had planned on splitting all the screening columns would have ended up being ~400 columns I can't wait to try this.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Aug 2020 15:23:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/287276#M55456</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2020-08-23T15:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/296681#M55778</link>
      <description>&lt;P&gt;Quick Question if i may? How would one use a list of columns with the Y( ) in the Process Screening?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;cols = dt_split &amp;lt;&amp;lt; Get Column Names( Numeric, Continuous );

dt_split &amp;lt;&amp;lt; Process Screening(
Y( ),
Control Chart Type( "Indiv and MR" ),
Use Limits Table(
1,
Data Table( "M66127-02B4_LIMITS" ),
Process Variables( :SPEC ),
LSL( :LSL ),
USL( :USL ),
Go
)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 17:40:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/296681#M55778</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2020-09-01T17:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/296692#M55779</link>
      <description>&lt;P&gt;I am not quite sure what you mean when you are specifying Y().&amp;nbsp; Do you want to have the user pop up the dialog entry window, with the Y values not selected, and allow the users to select the Y columns to use???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 18:46:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/296692#M55779</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-09-01T18:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/299678#M55910</link>
      <description>Could I please get some assistance with post processing after the Process Screening is complete? I would like to be able to select / identify the parts that have failed.</description>
      <pubDate>Fri, 04 Sep 2020 13:49:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/299678#M55910</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2020-09-04T13:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Apply Column Spec Limits based on Row Conditions</title>
      <link>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/299742#M55914</link>
      <description>&lt;P&gt;If you select any of the rows in the Process Screening report, you can then right click and there are several options that allow you to drill down to the details of the specific parameter.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="process1.PNG" style="width: 479px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26609i1294C7F3FA1F55F8/image-size/large?v=v2&amp;amp;px=999" role="button" title="process1.PNG" alt="process1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="process2.PNG" style="width: 937px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26610i38111E8168FB2025/image-size/large?v=v2&amp;amp;px=999" role="button" title="process2.PNG" alt="process2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2020 14:39:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Apply-Column-Spec-Limits-based-on-Row-Conditions/m-p/299742#M55914</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-09-04T14:39:29Z</dc:date>
    </item>
  </channel>
</rss>

