<?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: Auto Scaling of Variability Chart Y-axis based on USL &amp;amp; LSL spec limit in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279513#M54176</link>
    <description>&lt;P&gt;Doing so, I have the feeling, that it takes then longer to display the graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your support!&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jul 2020 14:23:25 GMT</pubDate>
    <dc:creator>Greenhorn</dc:creator>
    <dc:date>2020-07-16T14:23:25Z</dc:date>
    <item>
      <title>Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52411#M29670</link>
      <description>&lt;P&gt;When there is outlier data, my chart is always being scaled to mix or max point, which make the chart not visible.&lt;/P&gt;&lt;P&gt;Is that possible to use JSL script to set the Variability Chart Y-axis dynamically based on the parameters USL &amp;amp; LSL limit that already embeded inside the parameters? Please advice. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 02:53:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52411#M29670</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2018-03-01T02:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52412#M29671</link>
      <description>&lt;P&gt;The simple answer is yes......see&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index==&amp;gt;Axis Box&lt;/P&gt;
&lt;P&gt;Here is an example from the Scripting Index using Bivariate, but the same functionality is available for the Variability Chart&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Bivariate(
	Y( :weight ),
	X( :height ),
	FitLine
);
rbiv = biv &amp;lt;&amp;lt; report;
axisbox = rbiv[axis box( 1 )];
axisbox &amp;lt;&amp;lt; Max( 120 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Mar 2018 03:05:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52412#M29671</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-03-01T03:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52413#M29672</link>
      <description>&lt;P&gt;Hi txnelson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for advice. But unfortunately it is not the solution that i looking for. The axis box will prompt the user to key in the min / max manually. I want the JSL to take care of scaling automatically according to the params embededed LSL &amp;amp; USL spec without human interaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any option to do so?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 03:09:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52413#M29672</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2018-03-01T03:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52414#M29673</link>
      <description>&lt;P&gt;Here is an example script showing the precise code on using the USL and LSL to set the Max and Min axis settings.&amp;nbsp;&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" );

// Turn on Show Limits
spec = dt:NPN1 &amp;lt;&amp;lt; Get Property( "Spec Limits" );
	If( Is Empty( spec ) == 0,
		LSL = Try( spec["LSL"], . );
		USL = Try( spec["USL"], . );
		Target = Try( spec["Target"], . );
		Eval(
			Substitute(
					Expr(
						dt:NPN1 &amp;lt;&amp;lt;
						Set Property(
							"Spec Limits",
							{LSL( __LSL__ ), USL( __USL__ ),
							Target( __Target__ ), Show Limits( 1 )}
						),
					),
				Expr( __LSL__ ), LSL,
				Expr( __USL__ ), USL,
				Expr( __Target__ ), Target
			)
		);
	);

// Build the Chart	
vc = Variability Chart(
	Y( :NPN1 ),
	X( :lot_id ),
	Max Iter( 100 ),
	Conv Limit( 0.00000001 ),
	Number Integration Abscissas( 128 ),
	Number Function Evals( 65536 ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Std Dev Chart( 1 )
);

// Set the Min and Max
Report( vc )[axisbox( 1 )] &amp;lt;&amp;lt; Max( spec["USL"] );
Report( vc )[axisbox( 1 )] &amp;lt;&amp;lt; Min( spec["LSL"] );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Mar 2018 03:27:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52414#M29673</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-03-01T03:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52417#M29676</link>
      <description>Thanks Jim. It work perfectly!</description>
      <pubDate>Thu, 01 Mar 2018 05:19:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/52417#M29676</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2018-03-01T05:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/84842#M37981</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I want to use the same solution for my trend charts, but I'm having syntax&amp;nbsp;issues.&lt;BR /&gt;someone know what fields I need to change if my limits column name are: "CENTERLINE", "LCL_HS", "UCL_HS"?&lt;BR /&gt;&lt;BR /&gt;and also if I need adjustment if I'm&amp;nbsp;creating&amp;nbsp;a&amp;nbsp;Bivariate chart BY columns?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 05:46:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/84842#M37981</guid>
      <dc:creator>AdamChoen</dc:creator>
      <dc:date>2018-12-03T05:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/278360#M54061</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to modify this script below to scale the graph automatically to LSL and USL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="margin: 0px; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&lt;FONT color="#000000"&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2742"&gt;@martindemel&lt;/a&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="graph.png" style="width: 800px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25299i8B8DC15DB0A0C15A/image-size/large?v=v2&amp;amp;px=999" role="button" title="graph.png" alt="graph.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;Oneway(
	Y( 
	
		:Name( "test1" ),
		:Name( "testn" )
	
	 ),
	X( :Corner ),
	All Graphs( 0 ),
	Plot Quantile by Actual( 1 ),
	Line of Fit( 0 ),
	Std Dev Lines( 1 ),
	Legend( 0 ),
	SendToReport(
		Dispatch(
			{"Normal Quantile Plot"},
			"Oneway QuantilePlot",
			FrameBox,
			{Row Legend(
				Corner,
				Color( 1 ),
				Color Theme( "" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Jul 2020 16:24:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/278360#M54061</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-13T16:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/278381#M54064</link>
      <description>&lt;P&gt;Here is a script that should show you how to get the axes correctly specified.&amp;nbsp; The new learning you will need to study is the manipulation of Display Trees.&amp;nbsp; This is documented in the Scripting Guide found in the JMP Documentation Library&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help==&amp;gt;JMP Documentation Library&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oneway.PNG" style="width: 438px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25303iF09C32BC56EC868F/image-size/large?v=v2&amp;amp;px=999" role="button" title="oneway.PNG" alt="oneway.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

colList = {"NPN1","PNP1"};

For(i=1,i&amp;lt;=N Items(colList),i++,
// Turn on Show Limits
spec = column(dt,colList[i]) &amp;lt;&amp;lt; Get Property( "Spec Limits" );
	If( Is Empty( spec ) == 0,
		LSL = Try( spec["LSL"], . );
		USL = Try( spec["USL"], . );
		Target = Try( spec["Target"], . );
		Eval(
			Substitute(
					Expr(
						column(dt, colList[i]) &amp;lt;&amp;lt;
						Set Property(
							"Spec Limits",
							{LSL( __LSL__ ), USL( __USL__ ),
							Target( __Target__ ), Show Limits( 1 )}
						),
					),
				Expr( __LSL__ ), LSL,
				Expr( __USL__ ), USL,
				Expr( __Target__ ), Target
			)
		);
	);
);

// create the graphs
ow = Oneway(
	Y( 
	
		:Name( "NPN1" ),
		:Name( "PNP1" )
	
	 ),
	X( :site ),
	All Graphs( 0 ),
	Plot Quantile by Actual( 1 ),
	Line of Fit( 0 ),
	Std Dev Lines( 1 ),
	Legend( 0 ),
	SendToReport(
		Dispatch(
			{"Normal Quantile Plot"},
			"Oneway QuantilePlot",
			FrameBox,
			{Row Legend(
				Corner,
				Color( 1 ),
				Color Theme( "" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

owr = ow &amp;lt;&amp;lt; report;

// adjust the axes
For( i=1, i&amp;lt;= n items(owr),i++,
	spec = column(dt,colList[i]) &amp;lt;&amp;lt; Get Property( "Spec Limits" );
	(owr[i])[AxisBox(2)] &amp;lt;&amp;lt; min(spec["LSL"])&amp;lt;&amp;lt;max(spec["USL"])
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 18:22:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/278381#M54064</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-13T18:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279259#M54138</link>
      <description>&lt;P&gt;Thanks! It worked.&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;Could you also please help me to adjust the x axis settings with the help of a script?&lt;/P&gt;&lt;P&gt;There is no values between LSL and USL.&lt;/P&gt;&lt;P&gt;Perhaps, there is a strategy to adjust the x axis with meaningful Tick/ Bin Increment automatically?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;Is it possible to give&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;colList &lt;/SPAN&gt;&lt;SPAN class="token operator" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="token string" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #800080; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;"NPN1"&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #800080; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;"PNP1"&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;}&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt; to&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;ow &lt;/SPAN&gt;&lt;SPAN class="token operator" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt; Oneway&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;&lt;BR /&gt;Y&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;Name&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token string" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #800080; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;"NPN1"&lt;/SPAN&gt; &lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;Name&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token string" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #800080; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;"PNP1"&lt;/SPAN&gt; &lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 21px; -ms-hyphens: none; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: 0px; word-wrap: normal;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; box-sizing: border-box; color: #000000; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;,&lt;/SPAN&gt; --&amp;gt; instead of :Name(), :Name()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-15 17_09_38-Window.png" style="width: 803px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25381i07940045D1ECBB6B/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-15 17_09_38-Window.png" alt="2020-07-15 17_09_38-Window.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 15:18:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279259#M54138</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-15T15:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279262#M54139</link>
      <description>&lt;P&gt;Please see the script below for the changes required to handle your new requests.&amp;nbsp; In most cases, any list of columns will be able to be substituted into a Platform request, with an Eval() function, which expresses the list to JMP.&amp;nbsp; See the&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval( colList )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;in the script below.&lt;/P&gt;
&lt;P&gt;Assuming you have now read the section on Display Trees in the Scripting Guide, the messages that can be passed to the Display Objects are documented with examples in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;Examining the Messages for AxisBox(), you will see all of the messages available.&amp;nbsp; Among which is Inc().&amp;nbsp; It is this changing of the increment of the axis that is being used to insure values in the graph after changing the min and max axis values.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

colList = {"NPN1", "PNP1"};

For( i = 1, i &amp;lt;= N Items( colList ), i++, 
// Turn on Show Limits
	spec = Column( dt, colList[i] ) &amp;lt;&amp;lt; Get Property( "Spec Limits" );
	If( Is Empty( spec ) == 0,
		LSL = Try( spec["LSL"], . );
		USL = Try( spec["USL"], . );
		Target = Try( spec["Target"], . );
		Eval(
			Substitute(
					Expr(
						Column( dt, colList[i] ) &amp;lt;&amp;lt; Set Property(
							"Spec Limits",
							{LSL( __LSL__ ), USL( __USL__ ), Target( __Target__ ), Show Limits( 1 )}
						),

					),
				Expr( __LSL__ ), LSL,
				Expr( __USL__ ), USL,
				Expr( __Target__ ), Target
			)
		);
	);
);

// create the graphs
ow = Oneway(
	Y( 
	
		eval(colList)
	
	),
	X( :site ),
	All Graphs( 0 ),
	Plot Quantile by Actual( 1 ),
	Line of Fit( 0 ),
	Std Dev Lines( 1 ),
	Legend( 0 ),
	SendToReport(
		Dispatch(
			{"Normal Quantile Plot"},
			"Oneway QuantilePlot",
			FrameBox,
			{Row Legend(
				Corner,
				Color( 1 ),
				Color Theme( "" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

owr = ow &amp;lt;&amp;lt; report;

// adjust the axes
For( i = 1, i &amp;lt;= N Items( owr ), i++,
	spec = Column( dt, colList[i] ) &amp;lt;&amp;lt; Get Property( "Spec Limits" );
	(owr[i])[AxisBox( 2 )] &amp;lt;&amp;lt; Min( spec["LSL"] ) &amp;lt;&amp;lt; Max( spec["USL"] )
		&amp;lt;&amp;lt; inc ((spec["USL"] - spec["LSL"]) / 10 );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jul 2020 16:00:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279262#M54139</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-15T16:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279492#M54173</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;
&lt;P&gt;Thanks for your support a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I enhanced your code by this, for better looking graphs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;owr[i][AxisBox( 2 )] &amp;lt;&amp;lt; Min( spec["LSL"] - 0.1 * (spec["USL"] - spec["LSL"]) ) &amp;lt;&amp;lt;
Max( spec["USL"] + 0.1 * (spec["USL"] - spec["LSL"]) ) &amp;lt;&amp;lt; Inc( (spec["USL"] - spec["LSL"]) / 10 );
owr[i][AxisBox( 2 )] &amp;lt;&amp;lt; Format( Best, 6 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it something you also would do?&lt;/P&gt;
&lt;P&gt;Or is there a more elegant way?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 17:37:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279492#M54173</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-16T17:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279497#M54174</link>
      <description>It looks fine to me.   I am not exactly sure of other improvements, since I do not know the data.</description>
      <pubDate>Thu, 16 Jul 2020 13:40:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279497#M54174</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-16T13:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279513#M54176</link>
      <description>&lt;P&gt;Doing so, I have the feeling, that it takes then longer to display the graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your support!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 14:23:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/279513#M54176</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-16T14:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281328#M54478</link>
      <description />
      <pubDate>Thu, 23 Jul 2020 10:03:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281328#M54478</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-23T10:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281352#M54484</link>
      <description>&lt;P&gt;How to handle "JMP Alert" in case I invoke only one item/ column?&lt;/P&gt;&lt;P&gt;The "for loop" causes this Alert&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 12:09:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281352#M54484</guid>
      <dc:creator>Greenhorn</dc:creator>
      <dc:date>2020-07-23T12:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Scaling of Variability Chart Y-axis based on USL &amp; LSL spec limit</title>
      <link>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281374#M54490</link>
      <description>You need to check to see if you have the correct number of columns etc. before the code that causes the Alert, and then add the code necessary to deal with the issue.</description>
      <pubDate>Thu, 23 Jul 2020 14:10:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Auto-Scaling-of-Variability-Chart-Y-axis-based-on-USL-amp-LSL/m-p/281374#M54490</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-23T14:10:50Z</dc:date>
    </item>
  </channel>
</rss>

