<?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: In process capability function, How to display only Histogram? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809415#M98955</link>
    <description>&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
    <pubDate>Thu, 31 Oct 2024 21:32:32 GMT</pubDate>
    <dc:creator>NagneTE1</dc:creator>
    <dc:date>2024-10-31T21:32:32Z</dc:date>
    <item>
      <title>In process capability function, How to display only Histogram?</title>
      <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809220#M98886</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to see only Histogram with Process Capability.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a column list "colDlg["ycol"]", but it does not apply to reporting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you give any advice on this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, is it possible to add&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;"groupby" to the histogram?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;//Select Test Item for Scatterplot Matrix&lt;BR /&gt;colDlg = Column Dialog(&lt;BR /&gt;Title( "Test Item Selct" ),&lt;BR /&gt;ycol = Col List( "Test Item", Min Col( 1 ) ), //&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;hist = dt &amp;lt;&amp;lt; Process Capability(
	Process Variables(eval(colDlg["ycol"])),
	Spec Limits Dialog( "No (skip columns with no spec limits)" ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 0 ),
	Overall Sigma Normalized Box Plots( 0 ),
	Overall Sigma Summary Report( 0 ),
	Goal Plot( 0 ),
	Capability Index Plot( 0 ),
	Process Performance Plot( 0 ),&lt;BR /&gt;&lt;BR /&gt;    /* This part is not applied.
	{colDlg["ycol"] &amp;lt;&amp;lt; Process Capability Analysis(
		Process Summary( 0 ),
		Overall Sigma Capability( 0 ),
		Nonconformance( 0 ),
		Within Sigma Capability( 0 ),
		Histogram(
			1,
			Show Target( 0 ),
			Show Within Sigma Density( 0 ),
			Show Overall Sigma Density( 0 )
		)
	)}*/&lt;BR /&gt;
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 06:41:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809220#M98886</guid>
      <dc:creator>NagneTE1</dc:creator>
      <dc:date>2024-10-30T06:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: In process capability function, How to display only Histogram?</title>
      <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809260#M98903</link>
      <description>&lt;P&gt;Here is an example of removing the unwanted Outlier Boxes&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1730285144199.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69665iA6FFC3A3E8565AAB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1730285144199.png" alt="txnelson_0-1730285144199.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: semiconductor capability.jmp
// → Data Table( "semiconductor capability" )
Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

pc = Process Capability(
	Process Variables( :NPN1, :NPN2 ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 0 ),
	Goal Plot( 0 ),
	Capability Index Plot( 0 ),
	Process Performance Plot( 0 )
);

(Report( pc ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Process Summary']" )) &amp;lt;&amp;lt; delete;
(Report( pc ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Within Sigma Capability']" )) &amp;lt;&amp;lt; delete;
(Report( pc ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Overall Sigma Capability']" )) &amp;lt;&amp;lt; delete;
(Report( pc ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Nonconformance']" )) &amp;lt;&amp;lt; delete;


&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am not sure as to what you are wanting to do with your comment about GroupBy.&amp;nbsp; Would you please illustrate what the expected grouping would be and how the various groups would be displayed?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 10:48:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809260#M98903</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-10-30T10:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: In process capability function, How to display only Histogram?</title>
      <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809341#M98922</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to delete below things on histogram.&amp;nbsp;Could you tell me how to do it?&lt;/P&gt;&lt;P&gt;-Within Sigma Density&lt;/P&gt;&lt;P&gt;-Overall Sigma Density&lt;/P&gt;&lt;P&gt;-Target&lt;/P&gt;&lt;P&gt;(*Sample image)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NagneTE1_0-1730334571826.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69708i39A57A19CF0B487E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NagneTE1_0-1730334571826.png" alt="NagneTE1_0-1730334571826.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for Groupby,&lt;/P&gt;&lt;P&gt;I want to&amp;nbsp; select machine number as groupby.&lt;/P&gt;&lt;P&gt;machine number is integer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please see the sample image below&lt;/P&gt;&lt;P&gt;(*"Column 1" would be Machine #)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By any chance, If you know the better analysis to compare machine, please let me know.&lt;/P&gt;&lt;P&gt;I'll really appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(*Sample image)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NagneTE1_1-1730334761594.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69709iE5312B9C6E6E4086/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NagneTE1_1-1730334761594.png" alt="NagneTE1_1-1730334761594.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 00:41:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809341#M98922</guid>
      <dc:creator>NagneTE1</dc:creator>
      <dc:date>2024-10-31T00:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: In process capability function, How to display only Histogram?</title>
      <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809343#M98923</link>
      <description>&lt;P&gt;To remove the Target reference line in the histogram, simply set the value for the target in the Spec Limits Column Property to blank.&lt;/P&gt;
&lt;P&gt;Below is an example of using a By() element in the Process Capability, and going through each By level and delete the outline boxes associated with the Capability Analysis.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1730337844880.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69710iB9C59123B5EF0978/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1730337844880.png" alt="txnelson_0-1730337844880.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: semiconductor capability.jmp
// → Data Table( "semiconductor capability" )
Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

pc = Process Capability(
	Process Variables( :NPN1, :NPN2 ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 0 ),
	Goal Plot( 0 ),
	Capability Index Plot( 0 ),
	Process Performance Plot( 0 ),
	by( :Site )
);
nSites = N Items( Associative Array( :site ) );
For( i = 1, i &amp;lt;= nsites, i++,
	(Report( pc[i] ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Process Summary']" )) &amp;lt;&amp;lt; delete;
	(Report( pc[i] ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Within Sigma Capability']" )) &amp;lt;&amp;lt; delete;
	(Report( pc[i] ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Overall Sigma Capability']" )) &amp;lt;&amp;lt; delete;
	(Report( pc[i] ) &amp;lt;&amp;lt; xpath( "//OutlineBox[text()='Nonconformance']" )) &amp;lt;&amp;lt; delete;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Oct 2024 01:24:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809343#M98923</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-10-31T01:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: In process capability function, How to display only Histogram?</title>
      <link>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809415#M98955</link>
      <description>&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 21:32:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/In-process-capability-function-How-to-display-only-Histogram/m-p/809415#M98955</guid>
      <dc:creator>NagneTE1</dc:creator>
      <dc:date>2024-10-31T21:32:32Z</dc:date>
    </item>
  </channel>
</rss>

