<?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: Capability Index Plot Shade levels in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/573133#M78205</link>
    <description>&lt;P&gt;Thanks for the fast answer and the work around, Jed. :)&lt;/img&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked all the options and did not find a direct solution.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Nov 2022 12:42:42 GMT</pubDate>
    <dc:creator>Jonas_Rinne</dc:creator>
    <dc:date>2022-11-24T12:42:42Z</dc:date>
    <item>
      <title>Capability Index Plot Shade levels</title>
      <link>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/572500#M78170</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;I want to use the capability index plot&amp;nbsp;for my process capability report. Therefore I need to change the shade levels (yellow and green area). The capability line is 1.0 which is still ok. Now I want to change the yellow borderline to 1.33. Is this change possible? I haven't found a possibility to change this line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;JMP version:16.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have an idea&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/41931"&gt;@Jonas_Rinne&lt;/a&gt;?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="David_Hanslian_0-1669214623551.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47566i08A55CEBAC0381EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="David_Hanslian_0-1669214623551.png" alt="David_Hanslian_0-1669214623551.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is the part of my session script for the report:&lt;/P&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;Capability Index Plot( 1, Capability Lines( 1 ), Shade Levels( 1 ) ),
	Process Performance Plot( 0 ),
	Automatic Recalc( 1 ),
	SendToReport(
		Dispatch(
			{"Overall Sigma Capability Summary Report"},
			"",
			TableBox,
			{Sort By Column( 13, 0 )}
		),
		Dispatch(
			{"Capability Index Plot"},
			"2",
			ScaleBox,
			{Min( -0.0316605834674102 ), Max( 3.56546171869086 ), Inc( 1 ),
			Minor Ticks( 0 )}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 20:53:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/572500#M78170</guid>
      <dc:creator>David_Hanslian</dc:creator>
      <dc:date>2023-06-10T20:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Capability Index Plot Shade levels</title>
      <link>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/572531#M78174</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The "Shade Levels" option for the Capability Index Plot automatically shades the levels based on the Ppk slider on the right: Less than the slider value = red; up to 2x the slider value = yellow; more than 2x the slider value is green. This behavior can't be changed, but there's a workaround.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you uncheck the "Shade Levels," then right-click on the Ppk axis and select Axis Settings..., you can create custom shaded zones to your liking. Example script below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;open ("$SAMPLE_DATA\Cities.jmp");

Process Capability(
	Process Variables( :OZONE, :CO, :SO2, :NO ),
	Spec Limits(
		:OZONE( LSL( 0 ), Target( 0.05 ), USL( 0.1 ) ),
		:CO( LSL( 5 ), Target( 10 ), USL( 20 ) ),
		:SO2( LSL( 0 ), Target( 0.03 ), USL( 0.08 ) ),
		:NO( LSL( 0 ), Target( 0.025 ), USL( 0.6 ) )
	),
	Moving Range Method( Average of Moving Ranges ),
	Capability Box Plots( 0 ),
	Goal Plot( 0, Shade Levels( 1 ) ),
	Capability Index Plot( 1 ),
	Process Performance Plot( 0 ),
	SendToReport(
		Dispatch(
			{"Capability Index Plot"},
			"2",
			ScaleBox,
			{Add Ref Line( {-1, 1}, "Solid", "Red", "", 1, 0.25 ),
			Add Ref Line( {1, 1.33}, "Solid", "Yellow", "", 1, 0.25 ),
			Add Ref Line( {1.33, 3}, "Solid", "Green", "", 1, 0.25 )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Nov 2022 15:49:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/572531#M78174</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2022-11-23T15:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Capability Index Plot Shade levels</title>
      <link>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/573133#M78205</link>
      <description>&lt;P&gt;Thanks for the fast answer and the work around, Jed. :)&lt;/img&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked all the options and did not find a direct solution.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 12:42:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/573133#M78205</guid>
      <dc:creator>Jonas_Rinne</dc:creator>
      <dc:date>2022-11-24T12:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Capability Index Plot Shade levels</title>
      <link>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/573500#M78250</link>
      <description>&lt;P&gt;Hi Jed,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks a lot for your solution. It was easy for me to implement it :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="David_Hanslian_0-1669373716463.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47623iEA6BA7649113B713/image-size/medium?v=v2&amp;amp;px=400" role="button" title="David_Hanslian_0-1669373716463.png" alt="David_Hanslian_0-1669373716463.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2022 10:55:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capability-Index-Plot-Shade-levels/m-p/573500#M78250</guid>
      <dc:creator>David_Hanslian</dc:creator>
      <dc:date>2022-11-25T10:55:29Z</dc:date>
    </item>
  </channel>
</rss>

