<?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 Basic question regarding CUSUM SPC Charts in JMP in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/444982#M69298</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2742"&gt;@martindemel&lt;/a&gt;&lt;/P&gt;&lt;P&gt;CUSUM charts in JMP are based on the target and the sigma values, which are being calculated by JMP. In my understanding, the target value is the mean and sigma is the standard deviation of the data set.&lt;/P&gt;&lt;P&gt;However, JMP generates values which are different to the mean and the standard deviation.&lt;/P&gt;&lt;P&gt;I'm wondering what JMP is exactly calculating. The following JSL shows the differences:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open(
	"$SAMPLE_DATA/Quality Control/Engine Temperature Sensor.jmp"
);
CUSUM Control Chart(
	Y( :Y ),
	Target( 100 ),
	Sigma( 10 )
);

Tabulate(
	Show Control Panel( 0 ),
	Add Table( Row Table( Analysis Columns( :Y ), Statistics( Mean, Std Dev ) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any in depth information’s are very well come. Thanks.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:41:47 GMT</pubDate>
    <dc:creator>Thomas1</dc:creator>
    <dc:date>2023-06-10T23:41:47Z</dc:date>
    <item>
      <title>Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/444982#M69298</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2742"&gt;@martindemel&lt;/a&gt;&lt;/P&gt;&lt;P&gt;CUSUM charts in JMP are based on the target and the sigma values, which are being calculated by JMP. In my understanding, the target value is the mean and sigma is the standard deviation of the data set.&lt;/P&gt;&lt;P&gt;However, JMP generates values which are different to the mean and the standard deviation.&lt;/P&gt;&lt;P&gt;I'm wondering what JMP is exactly calculating. The following JSL shows the differences:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open(
	"$SAMPLE_DATA/Quality Control/Engine Temperature Sensor.jmp"
);
CUSUM Control Chart(
	Y( :Y ),
	Target( 100 ),
	Sigma( 10 )
);

Tabulate(
	Show Control Panel( 0 ),
	Add Table( Row Table( Analysis Columns( :Y ), Statistics( Mean, Std Dev ) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any in depth information’s are very well come. Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:41:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/444982#M69298</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2023-06-10T23:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445005#M69300</link>
      <description>&lt;P&gt;Please see the &lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-the-cusum-control-chart-platform.shtml#" target="_self"&gt;JMP CuSum Chart&lt;/A&gt; Help pages.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 16:22:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445005#M69300</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-12-14T16:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445006#M69301</link>
      <description>&lt;P&gt;To add to&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5358"&gt;@Mark_Bailey&lt;/a&gt;'s good advice, there are a few issues here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, your script is specifying the target and sigma values. But I see what you are saying. The default target is 103.963 with a sigma of 10.9792. The 103.963 is correct. Your Tabulate output is using the default format of 5,Best. Change the 5 to something bigger, like 10. You will see that the mean truly is 103.963. Tabulate was just rounding the result to fit the specified format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the sigma, as the help pages state, sigma is estimated by using the moving range, not the traditional standard deviation formula.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 16:29:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445006#M69301</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2021-12-14T16:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445008#M69302</link>
      <description>&lt;P&gt;The JMP Help for the CUSUM contains the Statistical Details&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1639499549005.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/38411i3ED41FE7411042A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1639499549005.png" alt="txnelson_0-1639499549005.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;They can be accessed through the Help tool "?" in JMP or clicking&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-the-cusum-control-chart-platform.shtml#" target="_self"&gt;Here&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 16:32:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445008#M69302</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-12-14T16:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445009#M69303</link>
      <description>&lt;P&gt;When building the CUSUM Chart with this data from scratch, you get a target of 103.963, which is the mean of the data. As you do not have spec limits set this is the default. If you have specs set it would put in the target of the spec setting or the mean of the upper and lower limit.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now the sigma is different. It will be 10.9792 , which differs from the standard deviation. Thats because the sigma used here is not the standard deviation from the data itself (like in a levey.-jennings control chart) but the moving average sigma from a control chart.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here you find this example in more detail in a blog post:&amp;nbsp;&lt;A title="How to detect small shifts in Control Charts" href="https://community.jmp.com/t5/JMPer-Cable/How-to-detect-small-shifts-in-Control-Charts/ba-p/49452" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMPer-Cable/How-to-detect-small-shifts-in-Control-Charts/ba-p/49452&amp;nbsp;&lt;/A&gt;&amp;nbsp;and in the documentation for JMP 16.1 (or search in the future JMP versions online documentation for "Control Panel for CUSUM Chart":&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/control-panel.shtml" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/16.1/#page/jmp/control-panel.shtml&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2730"&gt;@AnnieDudley&lt;/a&gt;&amp;nbsp;may add or correct my statement :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 16:39:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445009#M69303</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2021-12-14T16:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445029#M69305</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2742"&gt;@martindemel&lt;/a&gt;&amp;nbsp;is correct. The default sigma for the CUSUM Control Chart is calculated using the moving range, as recommended by Prof. Bill Woodall. He advises against using a traditionally calculated standard deviation for any cumulative or moving average chart, including CUSUM charts.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 17:10:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445029#M69305</guid>
      <dc:creator>AnnieDudley</dc:creator>
      <dc:date>2021-12-14T17:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445225#M69319</link>
      <description>&lt;P&gt;Thanks for the addition info. Am I Right in guessing that that moving average data are being used on order to have a more up to date target and sigma value, or in other words to suppress the impact of older data?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 09:10:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445225#M69319</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2021-12-15T09:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445670#M69353</link>
      <description>&lt;P&gt;I did check out the JMP help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-cusum-control-chart-construction.shtml#ww329269" target="_blank"&gt;https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-cusum-control-chart-construction.shtml#ww329269&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for CUSUM. What I found was:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;T&lt;/SPAN&gt; is the target of the process&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;σ&lt;/SPAN&gt; is the standard deviation of the process&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 07:50:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445670#M69353</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2021-12-16T07:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445684#M69354</link>
      <description>&lt;P&gt;Could you be confusing 'target' and 'mean'? The target is specified by you. The mean is calculated from the data on a subgroup basis.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 13:09:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445684#M69354</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-12-16T13:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445703#M69355</link>
      <description>&lt;P&gt;Hi Thomas, not exactly sure, but I would rather say, the goal is to detect small shifts you cannot detect that easy with typical control charts. Large special cause variation can be seen easily but may hide small shifts. So averaging these large spikes out will probably provide a fairer assessment of a small shift.&amp;nbsp;&lt;BR /&gt;I do not have any reference and am also no per se expert in CUSUM charts, but that's what I conclude thinking about it. Happy to remove this thought in case this is wrong.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 14:20:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/445703#M69355</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2021-12-16T14:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/446025#M69371</link>
      <description>&lt;P&gt;Thanks Martin. I couldn't find this help page, where there is more information concerining the target and the sigma value. On the page:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-cusum-control-chart-construction.shtml#ww329269" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/16.1/#page/jmp/statistical-details-for-cusum-control-chart-construction.shtml#ww329269&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sigma is defined as:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;σ&lt;/SPAN&gt; is the standard deviation of the process&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>Fri, 17 Dec 2021 08:45:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/446025#M69371</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2021-12-17T08:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question regarding CUSUM SPC Charts in JMP</title>
      <link>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/446027#M69372</link>
      <description>&lt;P&gt;Hi Thomas, in the link in my response above there is the information, however I put it here again:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/16.1/#page/jmp/control-panel.shtml" target="_blank" rel="noopener"&gt;"control panel" in documentation search should lead you here as well&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 10:08:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Basic-question-regarding-CUSUM-SPC-Charts-in-JMP/m-p/446027#M69372</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2021-12-17T10:08:07Z</dc:date>
    </item>
  </channel>
</rss>

