<?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 I cannot add USL and LSL to my variability chart automatically in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667617#M85581</link>
    <description>&lt;P&gt;Hi Guys,&lt;BR /&gt;&lt;BR /&gt;I am trying to have my Variability charts generated automatically with LSL and USL. This is the code I am using.&lt;BR /&gt;This code runs but it does not generate the limits in the chart. Do you have any idea of what io am doing wrong?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;DeltaVar= New Window("GRR Delta Report",
	
		For(l=1, l&amp;lt;=Nitems(ListDelta),l++,
			
			tres=Variability Chart(
				Y(ListDelta[l]),
				X(:Chan, :SN),
				Model (Crossed),
				Historical Sigma (0),
				Connect Cell Means (1),
				Show Group Means (1),
				Show Grand Mean (0),
				Show Grand Median (1),
				XBar Control Limits (1),
				S control Limits (1),
				Std Dev Chart (0),
				Mean Plots (0),
				Mean of Std Dev (1),
				Add Spec Limits({LSL(-0.1),USL(0.1)}),
				Show Spec Limits(1),

			);
			
		);

	
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 11 Aug 2023 22:44:19 GMT</pubDate>
    <dc:creator>CrownofTears</dc:creator>
    <dc:date>2023-08-11T22:44:19Z</dc:date>
    <item>
      <title>I cannot add USL and LSL to my variability chart automatically</title>
      <link>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667617#M85581</link>
      <description>&lt;P&gt;Hi Guys,&lt;BR /&gt;&lt;BR /&gt;I am trying to have my Variability charts generated automatically with LSL and USL. This is the code I am using.&lt;BR /&gt;This code runs but it does not generate the limits in the chart. Do you have any idea of what io am doing wrong?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;DeltaVar= New Window("GRR Delta Report",
	
		For(l=1, l&amp;lt;=Nitems(ListDelta),l++,
			
			tres=Variability Chart(
				Y(ListDelta[l]),
				X(:Chan, :SN),
				Model (Crossed),
				Historical Sigma (0),
				Connect Cell Means (1),
				Show Group Means (1),
				Show Grand Mean (0),
				Show Grand Median (1),
				XBar Control Limits (1),
				S control Limits (1),
				Std Dev Chart (0),
				Mean Plots (0),
				Mean of Std Dev (1),
				Add Spec Limits({LSL(-0.1),USL(0.1)}),
				Show Spec Limits(1),

			);
			
		);

	
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 22:44:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667617#M85581</guid>
      <dc:creator>CrownofTears</dc:creator>
      <dc:date>2023-08-11T22:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: I cannot add USL and LSL to my variability chart automatically</title>
      <link>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667667#M85586</link>
      <description>&lt;P&gt;I don't think Variability Chart supports "Add Spec Limits". You could add the spec limits to your columns as Spec Limit column properties.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

ListDelta = {"height", "weight"};

Column(dt, "height") &amp;lt;&amp;lt; Set Property("Spec Limits", {LSL(50), USL(100), Show Limits(1)});

DeltaVar = New Window("GRR Delta Report", 	
	For(l = 1, l &amp;lt;= N Items(ListDelta), l++, 
		tres = Variability Chart(
			Y(Eval(ListDelta[l])),
			X(:sex),
			Model(Crossed),
			Historical Sigma(0),
			Connect Cell Means(1),
			Show Group Means(1),
			Show Grand Mean(0),
			Show Grand Median(1),
			XBar Control Limits(1),
			S control Limits(1),
			Std Dev Chart(0),
			Mean Plots(0),
			Mean of Std Dev(1)
		);		
	);	
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Aug 2023 14:46:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667667#M85586</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-08-12T14:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: I cannot add USL and LSL to my variability chart automatically</title>
      <link>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667708#M85591</link>
      <description>&lt;P&gt;There may be other ways, as Jarmo indicates you can add spec limits to the properties of the column&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-13 at 8.49.39 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55717iC8399CD52C2307A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-13 at 8.49.39 AM.png" alt="Screenshot 2023-08-13 at 8.49.39 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then when you create the Variability plot, check the box at the bottom:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-13 at 8.49.58 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55718i243CB2F1401CF2F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-13 at 8.49.58 AM.png" alt="Screenshot 2023-08-13 at 8.49.58 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Sun, 13 Aug 2023 14:53:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-cannot-add-USL-and-LSL-to-my-variability-chart-automatically/m-p/667708#M85591</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2023-08-13T14:53:05Z</dc:date>
    </item>
  </channel>
</rss>

