<?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: Possible to reference known values in Control Chart Builder? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Possible-to-reference-known-values-in-Control-Chart-Builder/m-p/675083#M86216</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/50136"&gt;@BennyLee&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the Get Limits option from Red Triangle. See the following page for more details.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/example-of-control-limits.shtml#ww1831927" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/17.2/#page/jmp/example-of-control-limits.shtml#ww1831927&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to use the Get Limits option, you need to change the column names that JMP can handle. The easiest way to create a limits table is to save the results calculated by the Control Chart platform. The Save Limits command in the red triangle menu for each control chart automatically saves the limits from the sample values.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/saving-and-retrieving-limits.shtml#ww1162686" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/17.2/#page/jmp/saving-and-retrieving-limits.shtml#ww1162686&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to write the JSL code, here is an example. I hope it helps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
//Create Control chart
dt = Open( "$SAMPLE_DATA/Quality Control/Coating.jmp" );
obj = dt &amp;lt;&amp;lt; Control Chart Builder( Variables( Y( :Weight ) ) );

//Change here
//Open data table 
dt_limits = Open( "$temp\Limits.jmp" );

//Change column names
//Change here
dt_limits &amp;lt;&amp;lt; New Column( "Process", Character, "Nominal", set values( {"Weight"} ) );
dt_limits &amp;lt;&amp;lt; Go To( :Process );
Wait( 0 );
dt_limits &amp;lt;&amp;lt; Move Selected Columns( To First );
//Change here
:Center Value  &amp;lt;&amp;lt; set name( "_Mean" );
:Sigma &amp;lt;&amp;lt; set name( "_Sigma" );

//Save limits data table
//Change here
dt_limits &amp;lt;&amp;lt; Save( "$temp\ExampleLimits.jmp" );
Close( dt_limits );
obj &amp;lt;&amp;lt; Get Limits( "$temp\ExampleLimits.jmp" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 Sep 2023 01:17:49 GMT</pubDate>
    <dc:creator>yuichi_katsumur</dc:creator>
    <dc:date>2023-09-07T01:17:49Z</dc:date>
    <item>
      <title>Possible to reference known values in Control Chart Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/Possible-to-reference-known-values-in-Control-Chart-Builder/m-p/674284#M86173</link>
      <description>&lt;P&gt;Hi JMP Community folks, good day to all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am exploring &lt;U&gt;Control Chart Builder&lt;/U&gt; as an option, due to the availability of Local Data Filter.&lt;/P&gt;&lt;P&gt;Is it possible to reference columns directly from data table? (ultimately, I would like to write JSL to do so)&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[columns of Center Line (Mean), Sigma, and Low/High 1-/2-/3-sigma, are already pre-generated (for whatever reason) and part of data table ... see screenshot below]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Analyze &amp;gt; Quality and Process &amp;gt; Control Chart &amp;gt; IR … I believe this does not support Local Data Filter?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BennyLee_0-1693877518095.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56220iE502046453D01B53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BennyLee_0-1693877518095.png" alt="BennyLee_0-1693877518095.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 01:34:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Possible-to-reference-known-values-in-Control-Chart-Builder/m-p/674284#M86173</guid>
      <dc:creator>BennyLee</dc:creator>
      <dc:date>2023-09-05T01:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to reference known values in Control Chart Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/Possible-to-reference-known-values-in-Control-Chart-Builder/m-p/675083#M86216</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/50136"&gt;@BennyLee&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the Get Limits option from Red Triangle. See the following page for more details.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/example-of-control-limits.shtml#ww1831927" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/17.2/#page/jmp/example-of-control-limits.shtml#ww1831927&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to use the Get Limits option, you need to change the column names that JMP can handle. The easiest way to create a limits table is to save the results calculated by the Control Chart platform. The Save Limits command in the red triangle menu for each control chart automatically saves the limits from the sample values.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/saving-and-retrieving-limits.shtml#ww1162686" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/17.2/#page/jmp/saving-and-retrieving-limits.shtml#ww1162686&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to write the JSL code, here is an example. I hope it helps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
//Create Control chart
dt = Open( "$SAMPLE_DATA/Quality Control/Coating.jmp" );
obj = dt &amp;lt;&amp;lt; Control Chart Builder( Variables( Y( :Weight ) ) );

//Change here
//Open data table 
dt_limits = Open( "$temp\Limits.jmp" );

//Change column names
//Change here
dt_limits &amp;lt;&amp;lt; New Column( "Process", Character, "Nominal", set values( {"Weight"} ) );
dt_limits &amp;lt;&amp;lt; Go To( :Process );
Wait( 0 );
dt_limits &amp;lt;&amp;lt; Move Selected Columns( To First );
//Change here
:Center Value  &amp;lt;&amp;lt; set name( "_Mean" );
:Sigma &amp;lt;&amp;lt; set name( "_Sigma" );

//Save limits data table
//Change here
dt_limits &amp;lt;&amp;lt; Save( "$temp\ExampleLimits.jmp" );
Close( dt_limits );
obj &amp;lt;&amp;lt; Get Limits( "$temp\ExampleLimits.jmp" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Sep 2023 01:17:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Possible-to-reference-known-values-in-Control-Chart-Builder/m-p/675083#M86216</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-09-07T01:17:49Z</dc:date>
    </item>
  </channel>
</rss>

