<?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 do I get parametrized Process Capability Analysis and Interactive Capability Plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/627746#M82620</link>
    <description>&lt;P&gt;The problem in the above example is before the&amp;nbsp;&lt;SPAN&gt; "interactive capability plot". It does not evaluate the following:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Eval( d ) &amp;lt;&amp;lt; Process Capability Analysis(..........)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The problem is the parametrized "d" calculation. I tried Eval, Parse, Eval Insert functions and none of them worked.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 01 May 2023 18:48:45 GMT</pubDate>
    <dc:creator>PanelKangaroo44</dc:creator>
    <dc:date>2023-05-01T18:48:45Z</dc:date>
    <item>
      <title>How do I get parametrized Process Capability Analysis and Interactive Capability Plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/621226#M82036</link>
      <description>&lt;P&gt;I would like to have parametrized Process capability, that is the process capability column will be changed by column switcher. However, the process capability analysis definition do not accept any parametrized value. In the following example, let's say the column switcher value is "d" which is a string "Displacement". The Process variables can be defined with Eval(d) without any issue, i.e.,&amp;nbsp;Process Variables( &lt;SPAN&gt;Eval&lt;/SPAN&gt;(d)) works fine; however, the process capability analysis does not works, i.e,&amp;nbsp;&lt;SPAN&gt;Eval&lt;/SPAN&gt;&lt;SPAN&gt;(d)&amp;lt;&amp;lt; &lt;/SPAN&gt;Process Capability Analysis does not work. The reason I need this is the columns of the column switcher changes within a list, and I want the interactive plot follows it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another issue I have is the Interactive Capability plot values does not change with the column switcher. Manually, it is possible to use "Revert to Original Values", but it does not work in the script (as shown in the image). How can I use this function in script so that every time I switched the column, it reverts.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;d = "Displacement";
ProcessCap = dt &amp;lt;&amp;lt; Process Capability(
	Process Variables( Eval( d ) ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 0 ),
	Goal Plot( 0 ),
	Capability Index Plot( 0 ),
	Always use column properties( 1 ),
	Process Performance Plot( 0 ),
	{Eval( d ) &amp;lt;&amp;lt; Process Capability Analysis(
		Overall Sigma Capability( 0 ),
		Nonconformance( 0 ),
		Within Sigma Capability( 0 ),
		Histogram( 1, Show Within Sigma Density( 0 ) ),
		Interactive Capability Plot( 1, Revert to original values( 1 ), )
	)},&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:07:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/621226#M82036</guid>
      <dc:creator>PanelKangaroo44</dc:creator>
      <dc:date>2023-06-09T16:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get parametrized Process Capability Analysis and Interactive Capability Plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/621630#M82066</link>
      <description>&lt;P&gt;For "interactive capability plot", there are several ways. For example, you can use "eval insert" as shown below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table();
d = "Displacement";
Eval(
	Parse(
		Eval Insert(
			"\[ProcessCap = dt &amp;lt;&amp;lt; Process Capability(
				Process Variables( :^d^ ) ,
				Moving Range Method( Average of Moving Ranges ),
				Individual Detail Reports( 1 ),
				Capability Box Plots( 0 ),
				Goal Plot( 0 ),
				Capability Index Plot( 0 ),
				Always use column properties( 1 ),
				Process Performance Plot( 0 ),
				{:^d^ &amp;lt;&amp;lt; Process Capability Analysis(
					Overall Sigma Capability( 0 ),
					Nonconformance( 0 ),
					Within Sigma Capability( 0 ),
					Histogram( 1, Show Within Sigma Density( 0 ) ),
					Interactive Capability Plot( 1, Revert to original values( 1 ), )
				)},
			);
		]\"
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;For other methods, see the following page.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JSL-Cookbook-Archived/Insert-one-expression-into-another-using-Eval-Insert-Eval-Expr/ta-p/48998" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JSL-Cookbook-Archived/Insert-one-expression-into-another-using-Eval-Insert-Eval-Expr/ta-p/48998&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;I'm not sure if it works to change the interactive capability plot values. I hope it helps.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 00:27:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/621630#M82066</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-04-11T00:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get parametrized Process Capability Analysis and Interactive Capability Plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/627746#M82620</link>
      <description>&lt;P&gt;The problem in the above example is before the&amp;nbsp;&lt;SPAN&gt; "interactive capability plot". It does not evaluate the following:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Eval( d ) &amp;lt;&amp;lt; Process Capability Analysis(..........)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The problem is the parametrized "d" calculation. I tried Eval, Parse, Eval Insert functions and none of them worked.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 18:48:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/627746#M82620</guid>
      <dc:creator>PanelKangaroo44</dc:creator>
      <dc:date>2023-05-01T18:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get parametrized Process Capability Analysis and Interactive Capability Plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/627824#M82622</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/47447"&gt;@PanelKangaroo44&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;How about using the substitute function? The following example works for me.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval(
	Substitute(
			Expr(
				ProcessCap &amp;lt;&amp;lt; {d &amp;lt;&amp;lt; Process Capability Analysis(
					Overall Sigma Capability( 0 ),
					Nonconformance( 0 ),
					Within Sigma Capability( 0 ),
					Histogram( 1, Show Within Sigma Density( 0 ) ),
					Interactive Capability Plot( 1, Revert to original values( 1 ), )
				)}
			),
		Expr( d ), Eval( d )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 May 2023 00:42:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-get-parametrized-Process-Capability-Analysis-and/m-p/627824#M82622</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-05-02T00:42:55Z</dc:date>
    </item>
  </channel>
</rss>

