<?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: Difference between two Cpk analysis tool in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265785#M51774</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1450"&gt;@tonya_mauldin&lt;/a&gt;&amp;nbsp;I am using JMP 14.3.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 May 2020 16:20:57 GMT</pubDate>
    <dc:creator>mkhoddam</dc:creator>
    <dc:date>2020-05-11T16:20:57Z</dc:date>
    <item>
      <title>Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265325#M51686</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have generated random data from Johnson Sl distr. and saved it in a column. Now, when I use these two Cpk analysis tolls, I get diff. results:&lt;/P&gt;&lt;P&gt;1. Analyze&amp;gt; Quality and Process&amp;gt; Process capability&lt;/P&gt;&lt;P&gt;2. Analyze&amp;gt; Fit &amp;gt; Capability analysis (I have tried all of the options for long term, moving range, ...)&lt;/P&gt;&lt;P&gt;For both method I chose Johnson Sl distr. and the same USL.&lt;/P&gt;&lt;P&gt;So, how come I get diff. results? Which one is better?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mona&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 18:57:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265325#M51686</guid>
      <dc:creator>mkhoddam</dc:creator>
      <dc:date>2020-05-08T18:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265411#M51699</link>
      <description>&lt;P&gt;Dear Mona,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could not reproduce your Problem, please see the following script, that generates that table,&lt;/P&gt;&lt;P&gt;and the two scripts generate the capability Reports (one via Process Capability, the other via Distribution).&lt;/P&gt;&lt;P&gt;But when running the script more times, all cpk's are different, because the data is newly generated by the Formula behind.&lt;/P&gt;&lt;P&gt;Maybe that's the Problem? You could simply delete the Formula to "fix" the data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Georg&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Johnson SI Capability",
	Add Rows( 100 ),
	Compress File When Saved( 1 ),
	New Script(
		"Distribution",
		Distribution( Continuous Distribution( Column( :Johnson SI ) ) )
	),
	New Script(
		"Process Capability",
		Process Capability(
			Process Variables( :Johnson SI ),
			Moving Range Method( Average of Moving Ranges ),
			Individual Detail Reports( 1 ),
			Capability Box Plots( 1 ),
			Goal Plot( 1 ),
			Capability Index Plot( 1 ),
			Process Performance Plot( 0 )
		)
	),
	New Script(
		"Distribution of Johnson SI",
		Distribution(
			Continuous Distribution(
				Column( :Johnson SI ),
				Process Capability( Use Column Property Specs )
			)
		)
	),
	New Column( "Johnson SI",
		Numeric,
		"Continuous",
		Format( "Best", 12 ),
		Formula( Random Johnson Sl( 1, 1, 1 ) ),
		Set Property(
			"Spec Limits",
			{LSL( 1 ), USL( 3 ), Target( 2 ), Show Limits( 1 )}
		),
		Set Selected
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 May 2020 07:55:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265411#M51699</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2020-05-09T07:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265693#M51745</link>
      <description>&lt;P&gt;You did not state what version you are using.&amp;nbsp; Using JMP Version 15 or 16, the results should be the same.&amp;nbsp; In version 14, I expect them to be different.&amp;nbsp; In Version 14, Process Capability was updated and is using a different Johnson fitter.&amp;nbsp; This Johnson fitter uses quantile matching rather than maximum likelihood by default.&amp;nbsp; The distribution platform in 14 uses maximum likelihood.&amp;nbsp; Beginning with Version 15, the distribution platform was updated and the Johnson fitter uses quantile matching so I would expect them to match.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 12:38:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265693#M51745</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2020-05-11T12:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265707#M51748</link>
      <description>Using JMP15 on Win10 (sorry, I forgot)</description>
      <pubDate>Mon, 11 May 2020 13:08:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265707#M51748</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2020-05-11T13:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265751#M51762</link>
      <description>&lt;P&gt;If you want to post an example either here or to technical support, this issue can be researched further.&amp;nbsp; Otherwise, we are just guessing at possible scenarios.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 14:21:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265751#M51762</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2020-05-11T14:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265785#M51774</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1450"&gt;@tonya_mauldin&lt;/a&gt;&amp;nbsp;I am using JMP 14.3.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 16:20:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265785#M51774</guid>
      <dc:creator>mkhoddam</dc:creator>
      <dc:date>2020-05-11T16:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265787#M51775</link>
      <description>&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/9474"&gt;@Georg&lt;/a&gt;&lt;BR /&gt;No, the data is fixed. The difference is still there and the same all the time.</description>
      <pubDate>Mon, 11 May 2020 16:22:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265787#M51775</guid>
      <dc:creator>mkhoddam</dc:creator>
      <dc:date>2020-05-11T16:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265797#M51776</link>
      <description>&lt;P&gt;I expect them to be different in 14.3.&amp;nbsp; Distribution is using maximum likelihood to fit the Johnson distribution.&amp;nbsp; Process Capability is using quantile matching to fit the Johnson distribution.&amp;nbsp; Check your distribution parameters, I doubt they are the same!&amp;nbsp; If the distributional fits are not the same, the capability statistics will be different.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 16:37:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/265797#M51776</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2020-05-11T16:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/266146#M51837</link>
      <description>&lt;P&gt;Thanks for your reply. I tried maximum likelihood method for Process capability but still getting diff. results.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 17:12:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/266146#M51837</guid>
      <dc:creator>mkhoddam</dc:creator>
      <dc:date>2020-05-12T17:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two Cpk analysis tool</title>
      <link>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/266150#M51838</link>
      <description>&lt;P&gt;Yes, they will be different in all flavors of Version 14.&amp;nbsp; In Version 15 and 16 they will be same as Distribution was updated to the newer method used in Process Capability.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 17:27:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Difference-between-two-Cpk-analysis-tool/m-p/266150#M51838</guid>
      <dc:creator>tonya_mauldin</dc:creator>
      <dc:date>2020-05-12T17:27:36Z</dc:date>
    </item>
  </channel>
</rss>

