<?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 Hide excluded regions in EWMA chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891093#M105258</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a table where I exclude certain rows and then perform an EWMA on it. I would like the excluded regions not to be displayed, as is done for control charts with the “show excluded regions” option. Except that I don't see such an option for EWMA, unless I'm mistaken? Is there another option? I would like to avoid creating a subset as much as possible; I would like to stay on the same table.&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/Quality Control/Clips1.jmp" );
dt &amp;lt;&amp;lt; Clear Select &amp;lt;&amp;lt; Select Rows( Index( 6, 13 ) ) &amp;lt;&amp;lt; Exclude;
dt &amp;lt;&amp;lt; clear select();
obj = dt &amp;lt;&amp;lt; EWMA Control Chart( Y( :Gap ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SophieCuvillier_0-1753889012124.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79255iA80246CB7D84AB8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SophieCuvillier_0-1753889012124.png" alt="SophieCuvillier_0-1753889012124.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jul 2025 15:23:50 GMT</pubDate>
    <dc:creator>SophieCuvillier</dc:creator>
    <dc:date>2025-07-30T15:23:50Z</dc:date>
    <item>
      <title>Hide excluded regions in EWMA chart</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891093#M105258</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a table where I exclude certain rows and then perform an EWMA on it. I would like the excluded regions not to be displayed, as is done for control charts with the “show excluded regions” option. Except that I don't see such an option for EWMA, unless I'm mistaken? Is there another option? I would like to avoid creating a subset as much as possible; I would like to stay on the same table.&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/Quality Control/Clips1.jmp" );
dt &amp;lt;&amp;lt; Clear Select &amp;lt;&amp;lt; Select Rows( Index( 6, 13 ) ) &amp;lt;&amp;lt; Exclude;
dt &amp;lt;&amp;lt; clear select();
obj = dt &amp;lt;&amp;lt; EWMA Control Chart( Y( :Gap ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SophieCuvillier_0-1753889012124.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79255iA80246CB7D84AB8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SophieCuvillier_0-1753889012124.png" alt="SophieCuvillier_0-1753889012124.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 15:23:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891093#M105258</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2025-07-30T15:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Hide excluded regions in EWMA chart</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891116#M105260</link>
      <description>&lt;P&gt;You can enable it with scripting. Example directly from Scripting Index for EWMA&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Quality Control/Clips1.jmp");
dt &amp;lt;&amp;lt; Select Rows({31, 32, 33, 34, 35, 36, 37, 38, 39, 40}) &amp;lt;&amp;lt;
exclude &amp;lt;&amp;lt; hide;
obj = dt &amp;lt;&amp;lt; EWMA Control Chart(
	Y(:Gap),
	Subgroup(:Sample),
	Show Excluded Region(0)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jul 2025 15:41:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891116#M105260</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-30T15:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide excluded regions in EWMA chart</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891146#M105261</link>
      <description>&lt;P&gt;Hello, thank you for your response ! Indeed, but it shows white space it does not rescale automatically for instance:&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="SophieCuvillier_0-1753891017150.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79258i509543E3F49A1BE8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SophieCuvillier_0-1753891017150.png" alt="SophieCuvillier_0-1753891017150.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 15:57:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891146#M105261</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2025-07-30T15:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hide excluded regions in EWMA chart</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891153#M105262</link>
      <description>&lt;P&gt;Have you tried enabling automatic recalc?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 16:27:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891153#M105262</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-30T16:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Hide excluded regions in EWMA chart</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891252#M105271</link>
      <description>&lt;P&gt;Yes and I have still the whitespace issue. But is seems to be corrected, I have JMP 18.0.0 but for my colleague in 18.0.1 the same script gives different results and works as I wanted, without whitespace&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 07:45:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-excluded-regions-in-EWMA-chart/m-p/891252#M105271</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2025-07-31T07:45:23Z</dc:date>
    </item>
  </channel>
</rss>

