<?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 How do I save (or script) separate control limits for 2 IR charts created using the By function in JMP Pro? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/889956#M105195</link>
    <description>&lt;P&gt;I used to be able to save separate limits directly in the script, but I'm not sure where that would go now as the structure of the script is somewhat different.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jul 2025 17:57:12 GMT</pubDate>
    <dc:creator>4396MW</dc:creator>
    <dc:date>2025-07-28T17:57:12Z</dc:date>
    <item>
      <title>How do I save (or script) separate control limits for 2 IR charts created using the By function in JMP Pro?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/889956#M105195</link>
      <description>&lt;P&gt;I used to be able to save separate limits directly in the script, but I'm not sure where that would go now as the structure of the script is somewhat different.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 17:57:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/889956#M105195</guid>
      <dc:creator>4396MW</dc:creator>
      <dc:date>2025-07-28T17:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save (or script) separate control limits for 2 IR charts created using the By function in JMP Pro?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/890087#M105196</link>
      <description>&lt;P&gt;First welcome to the community. &amp;nbsp;I'm not exactly sure what you are asking and attaching your data table helps us to provide assistance. After you have created the IMR charts, using the red triangle next to each response variable by, scroll down to save script&amp;gt;Options.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 19:14:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/890087#M105196</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2025-07-28T19:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save (or script) separate control limits for 2 IR charts created using the By function in JMP Pro?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/890088#M105197</link>
      <description>&lt;P&gt;How are you setting/loading them? If you are using file it should look something like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
	SendToByGroup({:sex == "F"}),
	SendToByGroup({:sex == "M"}, Show Limit Labels(1)),
	Variables(Y(:height)),
	SendToByGroup(
		{:sex == "F"},
		Get Limits(&amp;lt;path1&amp;gt;)
	),
	SendToByGroup(
		{:sex == "M"},
		Get Limits(&amp;lt;path2&amp;gt;)
	),
	Show Control Panel(0),
	By(:sex)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And if you are doing it with Set Control Limits, you will get list of control&amp;nbsp; chart builders when using By (at least in JMP18), so send the messages separately&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

ccb = dt &amp;lt;&amp;lt; Control Chart Builder(
	Variables(Y(:height)),
	Show Control Panel(0),
	By(:sex)
);


ccb[1] &amp;lt;&amp;lt; Chart(
	Position(1),
	Set Control Limits({LCL(40), Avg(50), UCL(90)})
);

ccb[2] &amp;lt;&amp;lt; Chart(
	Position(1),
	Set Control Limits({LCL(20), Avg(30), UCL(50)})
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 19:14:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-or-script-separate-control-limits-for-2-IR-charts/m-p/890088#M105197</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-28T19:14:27Z</dc:date>
    </item>
  </channel>
</rss>

