<?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 process capability output from control chart output within a script? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636896#M83477</link>
    <description>&lt;P&gt;Cool!&lt;/P&gt;</description>
    <pubDate>Tue, 30 May 2023 15:10:16 GMT</pubDate>
    <dc:creator>ih</dc:creator>
    <dc:date>2023-05-30T15:10:16Z</dc:date>
    <item>
      <title>How to remove process capability output from control chart output within a script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636837#M83472</link>
      <description>&lt;P&gt;I am writing a script to make custom control charts for various variables in a data set. However since the columns have limits, the process capability analysis is automatically produced in the output. is there any code I can add to my script to remove the process capability analysis automatically (opposed to minimizing it manually after the report is created)? Jmp 17&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:32:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636837#M83472</guid>
      <dc:creator>Abby_Collins14</dc:creator>
      <dc:date>2023-06-11T11:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove process capability output from control chart output within a script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636890#M83474</link>
      <description>&lt;P&gt;Yep, you could do this:&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 );

//Add a spec limit to some sample data:
dt = Open( "$Sample_data/Quality Control/Coating.jmp" );
dt:Weight &amp;lt;&amp;lt; Set Property(
	"Spec Limits",
	{LSL( 18 ), USL( 23 ), Show Limits( 0 )}
);

//Open the control chart builder - the process capability will be opened
ccb = dt &amp;lt;&amp;lt; Control Chart Builder(
	Variables( Subgroup( :Sample ), Y( :Weight ) ),
	Chart( Position( 1 ) ),
	Show Control Panel( 0 )
);

//Find all process capability outline boxes and close them
(ccb &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey='Capability Analysis']")) &amp;lt;&amp;lt; Close(1)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 May 2023 14:56:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636890#M83474</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-05-30T14:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove process capability output from control chart output within a script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636891#M83475</link>
      <description>&lt;P&gt;You can use Show Capability (0) as part of your script to keep the capability analysis from showing up. Pseudo-example below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;ccb = Control Chart Builder(
	Variables( Y( :ColumnName ) ),
	Chart( Position( 1 ) ),
	Show Control Panel( 0 ),
	show capability( 0 ) //&amp;lt;--this
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 May 2023 15:03:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636891#M83475</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2023-05-30T15:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove process capability output from control chart output within a script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636896#M83477</link>
      <description>&lt;P&gt;Cool!&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 15:10:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-process-capability-output-from-control-chart/m-p/636896#M83477</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-05-30T15:10:16Z</dc:date>
    </item>
  </channel>
</rss>

