<?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: How to plot different spec limit for different group in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/104380#M38812</link>
    <description>&lt;P&gt;If you don't want to split your data table, you can use the Process Screening platform (This platform can use your data table as it is currently set up).&amp;nbsp; I have a blog post that details how to do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/Process-specification-limits-that-differ-based-on-a-grouping/ba-p/36656" target="_blank"&gt;https://community.jmp.com/t5/JMPer-Cable/Process-specification-limits-that-differ-based-on-a-grouping/ba-p/36656&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jan 2019 13:29:40 GMT</pubDate>
    <dc:creator>tonya_mauldin</dc:creator>
    <dc:date>2019-01-08T13:29:40Z</dc:date>
    <item>
      <title>How to plot different spec limit for different group</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/99829#M38799</link>
      <description>&lt;P&gt;For example: I have a data table including 2 columns:&lt;/P&gt;&lt;P&gt;Value Group&lt;/P&gt;&lt;P&gt;12&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;65&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;13&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;67 2&lt;/P&gt;&lt;P&gt;Group 1 and Group 2 has different spec limits. How can I set them up and plot the corret spec limit in Graphic builder?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 23:23:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/99829#M38799</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-07T23:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot different spec limit for different group</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/102111#M38803</link>
      <description>&lt;P&gt;Here is one method for doing what you want.&amp;nbsp; It envolves splitting the data into separate columns, and then setting spec limits for the split columns.&amp;nbsp; Finally the data are plotted using Graph Builder.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="specs.PNG" style="width: 997px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15035iE1D888D1B677784F/image-size/large?v=v2&amp;amp;px=999" role="button" title="specs.PNG" alt="specs.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/big class.jmp");

dtSplit = dt &amp;lt;&amp;lt; Split(
	Split By( :sex ),
	Split( :height, :weight ),
	Remaining Columns( Drop All ),
	Sort by Column Property
);

dtSplit:Name("Height F") &amp;lt;&amp;lt; set property("spec limits",{LSL( 57 ), USL( 65 ), Show Limits( 1 )});
dtSplit:Name("Height M") &amp;lt;&amp;lt; set property("spec limits",{LSL( 60 ), USL( 70 ), Show Limits( 1 )});

Graph Builder(
	Variables( X( :weight F ), Y( :height F ), Y( :height M ) ),
	Elements(
		Position( 1, 1 ),
		Points( X, Y, Legend( 57 ) ),
		Smoother( X, Y, Legend( 58 ) )
	),
	Elements(
		Position( 1, 2 ),
		Points( X, Y, Legend( 59 ) ),
		Smoother( X, Y, Legend( 60 ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You could also just specify to add reference lines to the Graph Builder platform, based upon the different spec limits.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 03:32:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/102111#M38803</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-08T03:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot different spec limit for different group</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/104380#M38812</link>
      <description>&lt;P&gt;If you don't want to split your data table, you can use the Process Screening platform (This platform can use your data table as it is currently set up).&amp;nbsp; I have a blog post that details how to do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/Process-specification-limits-that-differ-based-on-a-grouping/ba-p/36656" target="_blank"&gt;https://community.jmp.com/t5/JMPer-Cable/Process-specification-limits-that-differ-based-on-a-grouping/ba-p/36656&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 13:29:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-plot-different-spec-limit-for-different-group/m-p/104380#M38812</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2019-01-08T13:29:40Z</dc:date>
    </item>
  </channel>
</rss>

