<?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: JMP stability test report not showing both specification limits in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/367673#M61758</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7530"&gt;@peter_t&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for stopping by the Meet the Developers session at Discovery Summit Europe 2021 Online. It was nice to meet you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've reported the problem you've shown here as a bug and we hope we can address it in a future release.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 13 Mar 2021 14:51:09 GMT</pubDate>
    <dc:creator>Jeff_Perkinson</dc:creator>
    <dc:date>2021-03-13T14:51:09Z</dc:date>
    <item>
      <title>JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345287#M59571</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a response with two sided specification limits entered as Spec Limits in Column Properties, and tick mark in "Show as Graph Reference Lines". When I make a Reliability and Survival-&amp;gt;Degradation-&amp;gt;Stability analysis, I get an earliest crossing time of 13.99, were USL is crossed. However, USL is not shown in the overlay plot - only LSL is shown.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="peter_t_2-1609763904944.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29169i347361FED87A7ADC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="peter_t_2-1609763904944.png" alt="peter_t_2-1609763904944.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would like to see both specification limits in the overlay plot like in the figure below (where I have manually changed the y-axis)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="peter_t_3-1609764003508.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29170i81D8B35243546017/image-size/medium?v=v2&amp;amp;px=400" role="button" title="peter_t_3-1609764003508.png" alt="peter_t_3-1609764003508.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Do you have a trick, where I can force JMP to display both spec limits in the graph? I am using the graph in a script, where I loop through a lot of parameters, so I prefer to avoid changing the y-axis manually.&lt;/P&gt;&lt;P&gt;Data and script is attached. I am using JMP 15.0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 00:26:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345287#M59571</guid>
      <dc:creator>peter_t</dc:creator>
      <dc:date>2023-06-09T00:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345357#M59576</link>
      <description>&lt;P&gt;Here is how I handle such items&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stab.PNG" style="width: 957px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29175i772B9D5BB6E025DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="stab.PNG" alt="stab.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = current data table();

deg = dt &amp;lt;&amp;lt; Degradation(
	Y( :result ),
	Time( :Name( "Timepoint (M)" ) ),
	Label( :Batch ),
	Application( Stability Test ),
	Connect Data Markers( 1 ),
	Show Fitted Lines( 1 ),
	Show Spec Limits( 1 ),
	Show Median Curves( 0 ),
	Show Legend( 1 ),
	No Tab List( 0 ),
	Set Upper Spec Limit( 5.5 ),
	Set Lower Spec Limit( 4.5 ),
	Set Censoring Time( . ),
	Show Residual Plot( 0 ),
	Show Inverse Prediction Plot( 0 ),
	Show Curve Interval( 1 ),
	Inverse Prediction Interval( Confidence Interval ),
	Inverse Prediction Alpha( 0.025 ),
	Inverse Prediction Side( Lower One Sided ),
	SendToReport( Dispatch( {}, "Reports", OutlineBox, {Close( 1 )} ) )
);
specs = dt:result &amp;lt;&amp;lt; get property("spec limits");
degr = deg &amp;lt;&amp;lt; report;

if(degr[AxisBox(1)]&amp;lt;&amp;lt;get max &amp;lt; specs["USL"], degr[AxisBox(1)]&amp;lt;&amp;lt;max(specs["USL"] +
	.01 * abs(degr[AxisBox(1)]&amp;lt;&amp;lt;get max - degr[AxisBox(1)]&amp;lt;&amp;lt;get min ))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Jan 2021 14:45:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345357#M59576</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-04T14:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345358#M59577</link>
      <description>&lt;P&gt;Very close to txnelson's solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Current Data Table();
deg = Degradation(
	Y(:result),
	Time(:Name("Timepoint (M)")),
	Label(:Batch),
	Application(Stability Test),
	Connect Data Markers(1),
	Show Fitted Lines(1),
	Show Spec Limits(1),
	Show Median Curves(0),
	Show Legend(1),
	No Tab List(0),
	Set Upper Spec Limit(5.5),
	Set Lower Spec Limit(4.5),
	Set Censoring Time(.),
	Show Residual Plot(0),
	Show Inverse Prediction Plot(0),
	Show Curve Interval(1),
	Inverse Prediction Interval(Confidence Interval),
	Inverse Prediction Alpha(0.025),
	Inverse Prediction Side(Lower One Sided),
	SendToReport(Dispatch({}, "Reports", OutlineBox, {Close(1)}))
);

//get upper spec limits from result column column properties
uslValue = (Column(dt, "result") &amp;lt;&amp;lt; Get Property("Spec Limits"))["USL"];
//scaling to make limit visible
uslScaleFactor = 1.01;
//Degradation as report
rep = deg &amp;lt;&amp;lt; Report;
//access y-axis
reportYAxis = rep[axisbox(1)];
//current max value
currentYMax = reportYAxis &amp;lt;&amp;lt; Get Max;
//set as max of either old max or USL
reportYAxis &amp;lt;&amp;lt; Max(Max(currentYMax, uslValue*uslScaleFactor));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Jan 2021 14:54:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345358#M59577</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-01-04T14:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345359#M59578</link>
      <description>&lt;P&gt;This looks like a bug. Please contact JMP Technical Support at &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Meanwhile, a workaround is to use JSL to adjust the axis, if it is acceptable in your workflow.&lt;/P&gt;
&lt;P&gt;Look at the following codes. Towards the end, is one way to adjust the axis, by hard coding the range of the axis. There are at least two other ways but gradually getting complicated. If this approach does not work for your workflow, please explain. And we will see what might work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Degradation(
	Y( :result ),
	Time( :Name("Timepoint (M)") ),
	Label( :Batch ),
	Application( Stability Test ),
	Connect Data Markers( 1 ),
	Show Fitted Lines( 1 ),
	Show Spec Limits( 1 ),
	Show Median Curves( 0 ),
	Show Legend( 1 ),
	No Tab List( 0 ),
	Set Upper Spec Limit( 5.5 ),
	Set Lower Spec Limit( 4.5 ),
	Set Censoring Time( . ),
	Show Residual Plot( 0 ),
	Show Inverse Prediction Plot( 0 ),
	Show Curve Interval( 1 ),
	Inverse Prediction Interval( Confidence Interval ),
	Inverse Prediction Alpha( 0.025 ),
	Inverse Prediction Side( Lower One Sided ),
	SendToReport(
		Dispatch( {}, "Reports", OutlineBox, {Close( 1 )} ),
		Dispatch(
			{"Overlay"},
			"2",
			ScaleBox,
			{Min( 4 ), Max( 6 ), Inc( 0.2 ), Minor Ticks( 1 )}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Jan 2021 14:57:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/345359#M59578</guid>
      <dc:creator>peng_liu</dc:creator>
      <dc:date>2021-01-04T14:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/346042#M59679</link>
      <description>&lt;P&gt;Thanks. Great work around. Works perfectly in my script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2021 15:55:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/346042#M59679</guid>
      <dc:creator>peter_t</dc:creator>
      <dc:date>2021-01-06T15:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: JMP stability test report not showing both specification limits</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/367673#M61758</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7530"&gt;@peter_t&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for stopping by the Meet the Developers session at Discovery Summit Europe 2021 Online. It was nice to meet you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've reported the problem you've shown here as a bug and we hope we can address it in a future release.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Mar 2021 14:51:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-stability-test-report-not-showing-both-specification-limits/m-p/367673#M61758</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2021-03-13T14:51:09Z</dc:date>
    </item>
  </channel>
</rss>

