<?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 offset Spec Limits in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54956#M31061</link>
    <description>&lt;P&gt;Thank you for the awesome analysis, and i'm glad you enjoyed&amp;nbsp;the data set! Now in practical terms, should I then take one of the two prediction formulas and run them through the profiler, and then type in either spec? The predicted value should essentially tell me what I should change the spec values too in order to offset that bias, right?&lt;/P&gt;</description>
    <pubDate>Thu, 12 Apr 2018 21:53:05 GMT</pubDate>
    <dc:creator>mmeewes</dc:creator>
    <dc:date>2018-04-12T21:53:05Z</dc:date>
    <item>
      <title>How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54860#M31015</link>
      <description>&lt;P&gt;Hi all, I work for a food manufacturer currently making granola bars. This is a new process and we are finding some significant bias in the weight readings on our X-Ray system. I have done some analysis that seems to be showing that for anything north of the teach point adds positive bias and anything south of the teach point adds negative bias. Due to this bias, we are rejecting bars within specification as they approach the spec limits. In my mind, I've shown sufficient evidence that any values north of the teach point are always positive bias to one extent, and the same goes for anything south. So from here, I want to adjust our spec limits on the X-Ray machines to account for this bias. Can anyone offer a reccomendation of how I should find this interecept on each spec? Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2018 23:23:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54860#M31015</guid>
      <dc:creator>mmeewes</dc:creator>
      <dc:date>2018-04-11T23:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54875#M31028</link>
      <description>&lt;P&gt;Maybe try fitting 4p Robard model then save the inverse prediction formula as use that for bias correction.&lt;/P&gt;
&lt;P&gt;Works well for all the Teach Points, maybe a little less well on the USL Chewy, but still pretty good.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Fit Curve(
	Y( :Data ),
	X( :Standard ),
	Group( :Teach Point ),
	Fit Logistic 4P Rodbard(
		Plot Actual by Predicted( 1 ),
		Plot Residual by Predicted( 1 )
	),
	SendToReport(
		Dispatch(
			{"Logistic 4P Rodbard", "Residual by Predicted Plot"},
			"Fit Nonlinear Diagnostic Plots",
			FrameBox,
			{Frame Size( 434, 230 )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//This is the inverse prediction formula

Match( :Teach Point,
	"LSL Chewy",
		24.9145298299807 * Exp(
			Log(
				(32.3147049980956 - 18.3751462995063) / (:Data - 18.3751462995063)
				 - 1
			) / -8.80085037624688
		),
	"23g Learning",
		25.3324944849549 * Exp(
			Log(
				(33.3922517886217 - 18.0024302265495) / (:Data - 18.0024302265495)
				 - 1
			) / -7.88036690230438
		),
	"24g Learning",
		25.5173152024576 * Exp(
			Log(
				(33.3698484779835 - 18.1286639991536) / (:Data - 18.1286639991536)
				 - 1
			) / -8.03788584010198
		),
	"USL Chewy",
		24.8653808538003 * Exp(
			Log(
				(31.1879817143387 - 18.9552914323179) / (:Data - 18.9552914323179)
				 - 1
			) / -10.2749089803876
		),
	.
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Apr 2018 20:41:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54875#M31028</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2018-04-12T20:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54893#M31038</link>
      <description>In your script I see standard predictor as the regressor. What is that referencing?</description>
      <pubDate>Thu, 12 Apr 2018 15:31:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54893#M31038</guid>
      <dc:creator>mmeewes</dc:creator>
      <dc:date>2018-04-12T15:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54951#M31057</link>
      <description>&lt;P&gt;Oops, pasted the wrong script, sorry about that, its corrected now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The model is fitting :Data vs. :Standard&lt;/P&gt;
&lt;P&gt;Then I saved the inverse prediction column, which predicts the standard from the :Data column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In practice, this "transformation" will correct the bias from the non-linearity issue in the measurement system.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something to try:&lt;/P&gt;
&lt;P&gt;1. Use fit model for Data vs Standard, fit a 4p Robard model, save columns/save inverse prediction column&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;&lt;SPAN&gt;Use fit model for Data vs Standard, group by Teach Point, fit a 4p Robard model, save columns/save inverse prediction column&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;3. Analyze/Quality/Variiability. &amp;nbsp;In the Dialog, :Standard goes into the Standard role, then :Data and the two columns you just made go into the Y response role, and Teach Point goes&amp;nbsp;in to the X grouping role and Sample ID goes in to the Sample ID role.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//this works too
Variability Chart(
    Y( :Data,:Standard Predictor,:Standard Predictor by Teach Point ),
    X( :Teach Point, :Sample ID ),
    Standard( :Standard )
):&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Now that the Variability report is up, hold down the Ctrl key and from the red triangle menu go to Gauge Studies and pick Bias Report, and also Linearity report (click cancel for the sigma question)&lt;/P&gt;
&lt;P&gt;The reports (if this worked) wlll show you that in the transformed (inverse prediction formula) the bias is smaller, and that there is no or very little linearity in the bias.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This was a very fun data set, thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 21:05:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54951#M31057</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2018-04-12T21:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54956#M31061</link>
      <description>&lt;P&gt;Thank you for the awesome analysis, and i'm glad you enjoyed&amp;nbsp;the data set! Now in practical terms, should I then take one of the two prediction formulas and run them through the profiler, and then type in either spec? The predicted value should essentially tell me what I should change the spec values too in order to offset that bias, right?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 21:53:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54956#M31061</guid>
      <dc:creator>mmeewes</dc:creator>
      <dc:date>2018-04-12T21:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to offset Spec Limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54958#M31063</link>
      <description>Thank you for the awesome analysis, and i'm glad you ejoyed the data set! Now in practical terms, should I then take one of the two prediction formulas and run them through the profiler, and then type in either spec? The predicted value should essentially tell me what I should change the spec values too in order to offset that bias, right?</description>
      <pubDate>Thu, 12 Apr 2018 21:52:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-offset-Spec-Limits/m-p/54958#M31063</guid>
      <dc:creator>mmeewes</dc:creator>
      <dc:date>2018-04-12T21:52:19Z</dc:date>
    </item>
  </channel>
</rss>

