<?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: Data Filter: exclude excluded rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/585514#M79119</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;- I have followed up on the wish post, also suggesting that you try the Count Excluded Rows(0) option as&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt;&amp;nbsp;mentioned.&lt;/P&gt;</description>
    <pubDate>Wed, 28 Dec 2022 16:17:58 GMT</pubDate>
    <dc:creator>danschikore</dc:creator>
    <dc:date>2022-12-28T16:17:58Z</dc:date>
    <item>
      <title>Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584523#M79040</link>
      <description>&lt;P&gt;Is there an option (checkbox or setting) in Jmp to tell a data filter to exclude excluded rows from the lists?&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/Big Class.jmp" );

dt &amp;lt;&amp;lt; Data Filter(
	Location( {265, 175} ),
	Mode( Select( 0 ), Include( 1 ) ),
	Add Filter(
		columns( :age, :sex ),
		Where( :age == {12, 14, 16} ),
		Where( :sex == "F" ),
		Display( :age, N Items( 6 ) )
	)
);

dt &amp;lt;&amp;lt; New Column( "excluded", Character, "Nominal", set each value( If( Excluded(), "(excluded)", "" ) ) );
dt &amp;lt;&amp;lt; New Column( "age_", Character, "Nominal", set each value( Char( :age ) || " " || :excluded ) );
dt &amp;lt;&amp;lt; New Column( "sex_", Character, "Nominal", set each value( :sex || " " || :excluded ) );
	
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 498 ),
	Show Control Panel( 0 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ) ),
	Elements( Points( X, Y, Legend( 6 ) ), Smoother( X, Y, Legend( 7 ) ) )
);

df = gb &amp;lt;&amp;lt; Local Data Filter(
	Conditional,
	Add Filter(
		columns( :excluded, :age_, :sex_ ),
		Where( Is Missing( :excluded ) )
	)
);
wait(4);

gb &amp;lt;&amp;lt; Remove Local Data Filter();

df = gb &amp;lt;&amp;lt; Local Data Filter(
	Add Filter(
		columns( :age_, :sex_ )
	)
);

	

	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:30:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584523#M79040</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-11T11:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584550#M79042</link>
      <description>&lt;P&gt;Do you not want those levels or values to show up in a local data filter?&amp;nbsp; If so I think you are looking for 'Count Excluded Rows' from the red triangle context menu of the local data filter.&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="ih_0-1671656630513.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48606i1E4D45E2D9C880C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ih_0-1671656630513.png" alt="ih_0-1671656630513.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 21:04:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584550#M79042</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-12-21T21:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584592#M79045</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Do you not want those levels or values to show up in a local data filter?&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the misunderstanding -&amp;nbsp; &lt;SPAN&gt;&lt;EM&gt;exclude excluded rows from the list&lt;/EM&gt;s:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;remove excluded rows from the lists that are displayed in the data filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the idea:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It will not make a difference if I select one of the excluded items or not.&lt;/P&gt;&lt;P&gt;The points won't show up in the plot - why should the items show up in the data filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually: the same thing that I did via JSL - but just with a hidden checkbox or command for the Data filter.&lt;BR /&gt;Why does a&amp;nbsp;data filter *) which could look like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1671722750339.png" style="width: 221px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48625iB52A9CA8944D5AF3/image-dimensions/221x153?v=v2" width="221" height="153" role="button" title="hogi_2-1671722750339.png" alt="hogi_2-1671722750339.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;actually look like this (excluded, unnecessary items highlighted red):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1671723306005.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48627i25C08FE1328097D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1671723306005.png" alt="hogi_0-1671723306005.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;*) Following the example from the code in the original post.&lt;BR /&gt;Oops: after generating these images I noticed that the filter for sex doesn't make sense - but anyway, I hope the idea gets clear.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 18:08:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584592#M79045</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-12-22T18:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584690#M79059</link>
      <description>&lt;P&gt;The global Data Filter affects the row states in the data table. The Local Data Filter affects the data used in the platform. These filters are independent. Actions using the Local Data Filter do not affect the row states and vice versa. That behavior is intentional. You script new behavior if necessary.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 13:48:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584690#M79059</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-12-22T13:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584853#M79067</link>
      <description>&lt;P&gt;Hm, still&amp;nbsp;a bit confusing:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Graph Builder respects the pre-selection by the Global Data Filter&amp;nbsp;&lt;BR /&gt;an there is a hidden feature to disable this feature (&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1671731404998.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48650i938A25C2BA11686F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1671731404998.png" alt="hogi_1-1671731404998.png" /&gt;&lt;/span&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;The Data Filter of the Graph Builder &lt;STRONG&gt;doesn't&lt;/STRONG&gt; take &lt;SPAN&gt;it into account by default&lt;BR /&gt;- and there is not even a one-click-option to take the pre-selection into account.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I assume that the majority of the Jmp users don't have&amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1671731404998.png" style="width: 153px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48650i938A25C2BA11686F/image-dimensions/153x18?v=v2" width="153" height="18" role="button" title="hogi_1-1671731404998.png" alt="hogi_1-1671731404998.png" /&gt;&lt;/span&gt;enabled on their system by default.&lt;/P&gt;&lt;P&gt;Therefore it is still unclear to me why the local data filter provides at all entries in the lists which cannot be used to activate/deactivate any data points in the plot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is why I submitted this wish:&lt;BR /&gt;&lt;LI-MESSAGE title="local data filters: option to exclude excluded items" uid="584743" url="https://community.jmp.com/t5/JMP-Wish-List/local-data-filters-option-to-exclude-excluded-items/m-p/584743#U584743" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i hope other users will support this idea :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 20:26:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/584853#M79067</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T20:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/585514#M79119</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;- I have followed up on the wish post, also suggesting that you try the Count Excluded Rows(0) option as&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt;&amp;nbsp;mentioned.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 16:17:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/585514#M79119</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2022-12-28T16:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/586124#M79176</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;, as&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;&amp;nbsp;suggests could you try enabling the Count Excluded Rows option shown in the screenshot of the first reply to this thread?&amp;nbsp; I suspect your wish list item could be fulfilled by enabling that option by default.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 12:27:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/586124#M79176</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-01-03T12:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/587579#M79292</link>
      <description>&lt;P&gt;Thanks to all!&lt;/P&gt;&lt;P&gt;Now I got the point - finally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Count Excluded Rows&amp;nbsp;(0|1)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;... much more than just a setting to define if &lt;EM&gt;excluded rows are &lt;STRONG&gt;counted&lt;/STRONG&gt;&lt;/EM&gt; or not :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;....&amp;nbsp; by enabling that option by default.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;would be great - is this possible?&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 13:42:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/587579#M79292</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-01-08T13:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter: exclude excluded rows</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/587785#M79301</link>
      <description>&lt;P&gt;I couldn't find a way to set that via preferences and then I see that&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;&amp;nbsp;came to the same conclusion in the wish list post.&amp;nbsp; I suggest just editing your your wish list post/item to indicate that JMP &lt;EM&gt;could &lt;/EM&gt;just add&amp;nbsp;a preference for that default behavior.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 13:15:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-exclude-excluded-rows/m-p/587785#M79301</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-01-09T13:15:59Z</dc:date>
    </item>
  </channel>
</rss>

