<?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 remove moving range, limits and center line in control chart by JSL? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/112436#M39844</link>
    <description>&lt;P&gt;Here is the script.&amp;nbsp; I developed it by setting up the components I wanted interactively and then having JMP spit out the script.&amp;nbsp; Right click on the moving average axis, and select Remove.&amp;nbsp; Click on the graph and select Custom, and then changing the color of the upper, lower and average lines to white and 0 width.&amp;nbsp; I also moved them up on the list to bury them into the background.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="control.PNG" style="width: 578px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15617iD6254BA5701557D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="control.PNG" alt="control.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
	Show Two Shewhart Charts( 0 ),
	Variables( Y( :NPN1 ) ),
	Chart( Points( Statistic( "Individual" ) ), Limits( Sigma( "Moving Range" ) ) ),
	SendToReport(
		Dispatch(
			{},
			"NPN1",
			ScaleBox,
			{Add Ref Line( 104.41, "Solid", "Blue", "LSL", 1 ),
			Add Ref Line( 131.89, "Solid", "Blue", "USL", 1 ),
			Add Ref Line( 118.15, "Solid", "Blue", "Target", 1 )}
		),
		Dispatch(
			{},
			"Control Chart Builder",
			FrameBox,
			{Grid Line Order( 4 ), Reference Line Order( 5 ),
			DispatchSeg( Line Seg( 1 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 2 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 3 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 4 ), {Line Color( "White" ), Line Width( 0 )} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 14 Feb 2019 00:53:34 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-02-14T00:53:34Z</dc:date>
    <item>
      <title>how to remove moving range, limits and center line in control chart by JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/112428#M39837</link>
      <description>&lt;P&gt;For example, I have a table:&amp;nbsp;&lt;/P&gt;&lt;P&gt;T A B&lt;/P&gt;&lt;P&gt;1 7 2&lt;BR /&gt;3 3 1&lt;BR /&gt;5 5 3&lt;/P&gt;&lt;P&gt;and would like to plot 2 control chart on A and B vs T with some specs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;:A&amp;lt;&amp;lt;Set Property( "Spec Limits", {LSL( 2 ), USL( 9 ), Target( 5.5 )} );&lt;BR /&gt;:B&amp;lt;&amp;lt;Set Property( "Spec Limits", {LSL( 0 ), USL( 2 ), Target( 4 )} );&lt;BR /&gt;dt=Current Data Table();&lt;BR /&gt;dt&amp;lt;&amp;lt; Control Chart Builder(&lt;BR /&gt;Variables(&lt;BR /&gt;Y(:A,:B),&lt;BR /&gt;Subgroup(T)&lt;BR /&gt;)&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here what I get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMPCapture.PNG" style="width: 602px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15616i94FAAC82FFEC4A52/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMPCapture.PNG" alt="JMPCapture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How I can delect the moving range part and those green/red center/limit lines?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp;Chart(Position( 1 )) and Show Limit Summaries( 0 ) but they didn't work.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 23:22:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/112428#M39837</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-02-13T23:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove moving range, limits and center line in control chart by JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/112436#M39844</link>
      <description>&lt;P&gt;Here is the script.&amp;nbsp; I developed it by setting up the components I wanted interactively and then having JMP spit out the script.&amp;nbsp; Right click on the moving average axis, and select Remove.&amp;nbsp; Click on the graph and select Custom, and then changing the color of the upper, lower and average lines to white and 0 width.&amp;nbsp; I also moved them up on the list to bury them into the background.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="control.PNG" style="width: 578px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15617iD6254BA5701557D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="control.PNG" alt="control.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
	Show Two Shewhart Charts( 0 ),
	Variables( Y( :NPN1 ) ),
	Chart( Points( Statistic( "Individual" ) ), Limits( Sigma( "Moving Range" ) ) ),
	SendToReport(
		Dispatch(
			{},
			"NPN1",
			ScaleBox,
			{Add Ref Line( 104.41, "Solid", "Blue", "LSL", 1 ),
			Add Ref Line( 131.89, "Solid", "Blue", "USL", 1 ),
			Add Ref Line( 118.15, "Solid", "Blue", "Target", 1 )}
		),
		Dispatch(
			{},
			"Control Chart Builder",
			FrameBox,
			{Grid Line Order( 4 ), Reference Line Order( 5 ),
			DispatchSeg( Line Seg( 1 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 2 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 3 ), {Line Color( "White" ), Line Width( 0 )} ),
			DispatchSeg( Line Seg( 4 ), {Line Color( "White" ), Line Width( 0 )} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Feb 2019 00:53:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/112436#M39844</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-02-14T00:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove moving range, limits and center line in control chart by JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113092#M39853</link>
      <description>&lt;P&gt;It sounds like you want just a run chart. You can make that chart with Graph Builder.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 12:14:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113092#M39853</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-02-14T12:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove moving range, limits and center line in control chart by JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113649#M39867</link>
      <description>&lt;P&gt;But does Graph builder plots target/USL/LSL?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 17:12:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113649#M39867</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-02-14T17:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove moving range, limits and center line in control chart by JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113682#M39873</link>
      <description>&lt;P&gt;Yes, if you defined the Spec Limits column property.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 19:22:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-moving-range-limits-and-center-line-in-control/m-p/113682#M39873</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-02-14T19:22:55Z</dc:date>
    </item>
  </channel>
</rss>

