<?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: Saving Limits for P Chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430109#M67977</link>
    <description>&lt;P&gt;The summary data table does not have the proper format for a limits data table.&amp;nbsp; Furthermore, a limits data table only works if the limits are constant.&amp;nbsp; It does not work with non-constant limits.&amp;nbsp; You will need to grab the sigma from the Show Sigma report and then use JSL similar to the following&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
	Variables( Y( :NO ), Subgroup( :State ) ),
	Chart(
		Position( 1 ),
		Set Control Limits( {Avg( 0.026 ), Sigma( 0.02 )} ),
	),
	Chart(
		Position( 2 ),
		Set Control Limits( {Avg( 0.02 ), Sigma( 0.0241124109987879 )} )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 25 Oct 2021 17:27:04 GMT</pubDate>
    <dc:creator>tonya_mauldin</dc:creator>
    <dc:date>2021-10-25T17:27:04Z</dc:date>
    <item>
      <title>Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430061#M67966</link>
      <description>&lt;P&gt;I am working in JMP 15. And I cannot save the control limits for a P Chart that I generated, because the UCL is different for each "Y."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to be able to save the limits for each Y attribute. Is this only possible for I Charts when the UCL is constant?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:18:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430061#M67966</guid>
      <dc:creator>lucianoa</dc:creator>
      <dc:date>2023-06-11T11:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430092#M67973</link>
      <description>&lt;P&gt;I'm not exactly sure what you mean by "for each Y"? Do you mean for each sample or are you asking about different reasons for failure? I think you understand the issue, p-charts will have varying control limits because the size of the sample is changing. &amp;nbsp;If you can keep the sample size constant (np charts) then you could get a constant control limit. &amp;nbsp;I MR charts may be useful depending on the proportion of defectives (large proportions).&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 16:54:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430092#M67973</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2021-10-25T16:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430098#M67975</link>
      <description>&lt;P&gt;If you use the Save Summaries option in the red triangle menu, you can see the varying control limits for each point plotted.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 16:58:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430098#M67975</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2021-10-25T16:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430100#M67976</link>
      <description>&lt;P&gt;Thank you Tonya, this worked. Now my question problem is - how do I apply those limits to a different chart.&amp;nbsp; I used the "Get Limits" function.&amp;nbsp; But I got this error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lucianoa_0-1635181485889.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36986i54FA5D7BC19AE086/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lucianoa_0-1635181485889.png" alt="lucianoa_0-1635181485889.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was when I tried to use the data table directly in the format that was put out by "Save Summaries"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 17:05:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430100#M67976</guid>
      <dc:creator>lucianoa</dc:creator>
      <dc:date>2021-10-25T17:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430109#M67977</link>
      <description>&lt;P&gt;The summary data table does not have the proper format for a limits data table.&amp;nbsp; Furthermore, a limits data table only works if the limits are constant.&amp;nbsp; It does not work with non-constant limits.&amp;nbsp; You will need to grab the sigma from the Show Sigma report and then use JSL similar to the following&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
	Variables( Y( :NO ), Subgroup( :State ) ),
	Chart(
		Position( 1 ),
		Set Control Limits( {Avg( 0.026 ), Sigma( 0.02 )} ),
	),
	Chart(
		Position( 2 ),
		Set Control Limits( {Avg( 0.02 ), Sigma( 0.0241124109987879 )} )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Oct 2021 17:27:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430109#M67977</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2021-10-25T17:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430112#M67978</link>
      <description>&lt;P&gt;Do you have any idea why the Show Sigma Report would be greyed out, not allowing me to click?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lucianoa_0-1635183676465.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36989iB7BFBD79D4101871/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lucianoa_0-1635183676465.png" alt="lucianoa_0-1635183676465.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 17:41:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430112#M67978</guid>
      <dc:creator>lucianoa</dc:creator>
      <dc:date>2021-10-25T17:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Limits for P Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430140#M67982</link>
      <description>&lt;P&gt;Sorry.&amp;nbsp; I forgot that you had an attribute chart.&amp;nbsp; Show Sigma Report is only available for Variables control charts.&amp;nbsp; Control chart builder has no method of specifying non-constant limits for attribute charts.&amp;nbsp; This can be done with variables charts only.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 17:56:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Limits-for-P-Chart/m-p/430140#M67982</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2021-10-25T17:56:18Z</dc:date>
    </item>
  </channel>
</rss>

