<?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 get Repeatability, Reproducibility and Gauge R&amp;amp;R Variation values for each parameter in a table post Gauge R&amp;amp;R analysis via JSL? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678870#M86516</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks, This script partly does what I need to do, but needs me to press OK for each parameter's Gauge R&amp;amp;R analysis (I am on JMP 16.2) at the "Enter/Verify Gauge R&amp;amp;R specification" window. I do not want to do this for my ~100 parameters.&amp;nbsp; How to automate the Gauge R&amp;amp;R analysis/ the press OK step?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1),
	Model("Main Effect"),
	X(:SITE)
);

var &amp;lt;&amp;lt; "Gauge R&amp;amp;R Report"n(1);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Also, I do not see the JMP generated script (when the OK button is pressed) in the log otherwise I could have got a direction to proceed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Sep 2023 21:17:57 GMT</pubDate>
    <dc:creator>Neo</dc:creator>
    <dc:date>2023-09-18T21:17:57Z</dc:date>
    <item>
      <title>How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678533#M86490</link>
      <description>&lt;P&gt;I am conducting Gauge R&amp;amp;R analysis for several&amp;nbsp;(~100) measured parameters. My data table with parts, operatorID/Inspector and repeats has spec limits values saved into the measured parameters columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Interactively doing the Gauge R&amp;amp;R analysis process as shown at time 1.38 mins as in this video&amp;nbsp;is inefficient and incontinent when the parameters are ~100.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Statistical-Thinking-for/Conducting-a-Gauge-R-amp-R-Analysis/ta-p/271895https://community.jmp.com/t5/Statistical-Thinking-for/Conducting-a-Gauge-R-amp-R-Analysis/ta-p/271895" target="_self"&gt;https://community.jmp.com/t5/Statistical-Thinking-for/Conducting-a-Gauge-R-amp-R-Analysis/ta-p/271895https://community.jmp.com/t5/Statistical-Thinking-for/Conducting-a-Gauge-R-amp-R-Analysis/ta-p/271895&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to automate the process and get the the&amp;nbsp;Repeatability, Reproducibility and Gauge R&amp;amp;R Variation values in a data table.&lt;/P&gt;&lt;P&gt;How to do this via JSL?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 16:49:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678533#M86490</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-17T16:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678561#M86493</link>
      <description>&lt;P&gt;There are quite a many ways of doing this, below is fairly simple example of one possible way&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&amp;amp;R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&amp;amp;R Report"n(1))	
);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;if you have one-sided specifications be sure to check that the variables before and after those work correctly. There was a bug at some JMP version which did use wrong limits if you had one-sided somewhere in between the execution and you relied on spec limits column property (this might be fixed in JMP17, not sure. I use different method nowadays).&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 19:34:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678561#M86493</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-17T19:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678564#M86495</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks, I have both LSL and USL for each measured parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you have posted is, if I understand correctly, the&amp;nbsp;&lt;SPAN&gt;initial&amp;nbsp;&lt;/SPAN&gt;analysis part.&lt;/P&gt;&lt;P&gt;I want to automate the next stage which is getting the&amp;nbsp;&lt;SPAN&gt;Repeatability, Reproducibility and Gauge R&amp;amp;R Variation values (marked with red arrows) &lt;U&gt;for each measured in a new data table&lt;/U&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In the video I linked before, this is done post&amp;nbsp;1.38 mins into the video and is done manually.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_0-1694982352174.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56705i3FA7097A163BDBE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_0-1694982352174.png" alt="Neo_0-1694982352174.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How to automate this part via JSL?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 20:28:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678564#M86495</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-17T20:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678606#M86499</link>
      <description>&lt;P&gt;You right click on the Gauge R&amp;amp;R table and create a table from it by using Make Combined Data Table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1695011436470.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56709i8F461BB14BDE4054/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1695011436470.png" alt="jthi_0-1695011436470.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;From the resulting table's table script you can get an idea how to automate it (get a reference to table box and use Make Combined Data Table message)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1695011523534.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56711i102F484AA6FD6AA4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1695011523534.png" alt="jthi_2-1695011523534.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Start automating with only few columns and when you get it working expand to more.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 04:32:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678606#M86499</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-18T04:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678652#M86506</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;In this code, how to correctly loop through all the measured variables (~100) in my data table?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&amp;amp;R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&amp;amp;R Report"n(1))	
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;~&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 16:00:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678652#M86506</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-18T16:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678656#M86507</link>
      <description>&lt;P&gt;Build list of columns of interest and then send Gauge R&amp;amp;R Report message&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1695032388098.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56715i4E9A1099FC659D50/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1695032388098.png" alt="jthi_0-1695032388098.png" /&gt;&lt;/span&gt;&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);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1),
	Model("Main Effect"),
	X(:SITE)
);

var &amp;lt;&amp;lt; "Gauge R&amp;amp;R Report"n(1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Sep 2023 10:20:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678656#M86507</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-18T10:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678870#M86516</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks, This script partly does what I need to do, but needs me to press OK for each parameter's Gauge R&amp;amp;R analysis (I am on JMP 16.2) at the "Enter/Verify Gauge R&amp;amp;R specification" window. I do not want to do this for my ~100 parameters.&amp;nbsp; How to automate the Gauge R&amp;amp;R analysis/ the press OK step?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1),
	Model("Main Effect"),
	X(:SITE)
);

var &amp;lt;&amp;lt; "Gauge R&amp;amp;R Report"n(1);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Also, I do not see the JMP generated script (when the OK button is pressed) in the log otherwise I could have got a direction to proceed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 21:17:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/678870#M86516</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-18T21:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679080#M86529</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks. While I wait for understand how to automate this "OK" step for each measured parameter&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_0-1695075246821.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56752iEEBF1E8A77EC53A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_0-1695075246821.png" alt="Neo_0-1695075246821.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try the following from above in my JM 16.2.0,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&amp;amp;R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&amp;amp;R Report"n(1))	
);
Wait (0);

rpt ["Variability Gauge", "Variability Gauge Analysis for PNP1", "Gauge R&amp;amp;R", Table Box[1]] &amp;lt;&amp;lt;Make Combined Data Table;
rpt &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get an error&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Name Unresolved: rpt in access or evaluation of 'rpt' , rpt/*###*/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;most likely as I haven't defined rpt. The following with script copied from JMP also throws an error&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

platform = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&amp;amp;R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&amp;amp;R Report"n(1))	
);
Wait (0);

//rpt ["Variability Gauge", "Variability Gauge Analysis for PNP1", "Gauge R&amp;amp;R", Table Box[1]] &amp;lt;&amp;lt;Make Combined Data Table;
//rpt &amp;lt;&amp;lt; Close Window;

Report( platform[1] )[Outline Box( "Gauge R&amp;amp;R" )][Table Box( 1 )] &amp;lt;&amp;lt;
Make Combined Data Table;
Report( platform[1] ) &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I need some help to proceed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 22:15:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679080#M86529</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-18T22:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679179#M86536</link>
      <description>&lt;P&gt;I wouldn't worry about getting the table box if you cannot get gage results (worry about table box later). I don't remember anymore how I did gage scripting in earlier JMP versions (JMP14, 15 and 16), but most likely I did them one by one as it most likely faster if you are only interested in the results and not in the plots. This seemed to work in JMP16.2&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1),
	Model("Main Effect"),
	X(:SITE),
	Historical Sigma(0)
);
var &amp;lt;&amp;lt; "Gauge R&amp;amp;R"n();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Sep 2023 04:49:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679179#M86536</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-19T04:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679268#M86545</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks. This script works in my JMP 16.2 and does not ask me to verify Gauge specifications. Looking at the script for "Make Combined Data Table" for :NPN1, while for I see&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
platform = Data Table( "Semiconductor Capability" ) &amp;lt;&amp;lt;
Variability Chart(
	Y( :NPN1 ),
	X( :SITE ),
	Model( "Main Effect" ),
	Historical Sigma( 0 ),
	"Gauge R&amp;amp;R"n( 6, 27.48 ),
	"Gauge R&amp;amp;R Report"n( 1 )
);
Wait( 0 );
Report( platform[1] )[Outline Box( "Gauge R&amp;amp;R" )][Table Box( 1 )] &amp;lt;&amp;lt;
Make Combined Data Table;
Report( platform[1] ) &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;while for :PNP1, I see&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
platform = Data Table( "Semiconductor Capability" ) &amp;lt;&amp;lt;
Variability Chart(
	Y( :PNP1 ),
	X( :SITE ),
	Model( "Main Effect" ),
	Historical Sigma( 0 ),
	"Gauge R&amp;amp;R"n( 6, 265.26 ),
	"Gauge R&amp;amp;R Report"n( 1 )
);
Wait( 0 );
Report( platform[1] )[Outline Box( "Gauge R&amp;amp;R" )][Table Box( 1 )] &amp;lt;&amp;lt;
Make Combined Data Table;
Report( platform[1] ) &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The question now is how to loop through all the parameters for which GR&amp;amp;R is run and concatenate the "Combined Data Table" generated for each parameter.&lt;/P&gt;&lt;P&gt;Clearly, the spec limits in this line&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;"Gauge R&amp;amp;R"n( _LSL_, _USL_ )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;need to come from the data table for each parameter.&lt;/P&gt;&lt;P&gt;I have never done this but I will try on my side, but some direction would be very useful.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 08:54:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679268#M86545</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-09-19T08:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Repeatability, Reproducibility and Gauge R&amp;R Variation values for each parameter in a table post Gauge R&amp;R analysis via JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679276#M86546</link>
      <description>&lt;P&gt;I'm not sure which scripts you are currently talking about. This should use spec limits from column properties (except for the possible bug I did mention earlier which might be present in JMP16)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(
	Y(:NPN1, :PNP1),
	Model("Main Effect"),
	X(:SITE),
	Historical Sigma(0)
);
var &amp;lt;&amp;lt; "Gauge R&amp;amp;R"n();

If(N Items(var) &amp;gt; 1,
	result_ref = Report(var[1])[OutlineBox("Gauge R&amp;amp;R")];
,
	result_ref = Report(var)[OutlineBox("Gauge R&amp;amp;R")];
);

dt_result = result_ref[TableBox(1)] &amp;lt;&amp;lt; Make Combined Data Table;

show(Column(dt, "NPN1") &amp;lt;&amp;lt; Get Property("Spec Limits"));
show(Column(dt, "PNP1") &amp;lt;&amp;lt; Get Property("Spec Limits"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Sep 2023 09:59:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-Repeatability-Reproducibility-and-Gauge-R-amp-R/m-p/679276#M86546</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-19T09:59:40Z</dc:date>
    </item>
  </channel>
</rss>

