<?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: 2 bugs with Tables/Summary in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718158#M90024</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Dashboards,&amp;nbsp;&lt;LI-MESSAGE title="Outlier (👽) screening with Jmp Dashboards - how?" uid="656888" url="https://community.jmp.com/t5/Discussions/Outlier-screening-with-Jmp-Dashboards-how/m-p/656888#U656888" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;TS-00046650, it's "just" annoying that the restriction is not applied - for automatic statistical analysis via Tables/Summary the issue is more severe: at the end, there is&amp;nbsp; the wrong result - no Data Filter on the left of a Dashboard where the user can detect and correct the issue.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Same topic - &amp;gt; same solution :&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Local Data Filter: option: restrict or do not restrict to current data" uid="657423" url="https://community.jmp.com/t5/JMP-Wish-List/Local-Data-Filter-option-restrict-or-do-not-restrict-to-current/m-p/657423#U657423" 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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2024 05:05:19 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-01-23T05:05:19Z</dc:date>
    <item>
      <title>2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718031#M89978</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I just detected 2 nasty bugs in &lt;STRONG&gt;Tables/Summary.&lt;BR /&gt;One of them can even be used to make JMP crash on any PC (!!!)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bug 1) Please read this code and predict what Jmp will do:&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; Summary(
	Local Data Filter( Add Filter( columns( :sex ), Where( :sex == "X" ) ) ),
	Group( :sex ),
	Mean( :height ),
	Link to original data table(0),
output table name( "average o students with sex = \!"X\!"" )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In BigClass there are no students with sex="X". So, I expected the list to be empty:&lt;BR /&gt;Filter: sex= "X"&amp;nbsp; / no "X" in the table&amp;nbsp; -&amp;gt; empty summary table&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, the logic in Jmp is surprisingly different:&lt;/P&gt;&lt;P&gt;If the DataFilter doesn't find a match, the Data Filter gets reset and shows ALL data.&lt;/P&gt;&lt;P&gt;For Dashboards,&amp;nbsp;&lt;LI-MESSAGE title="Outlier (👽) screening with Jmp Dashboards - how?" uid="656888" url="https://community.jmp.com/t5/Discussions/Outlier-screening-with-Jmp-Dashboards-how/m-p/656888#U656888" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;TS-00046650, it's "just" annoying that the restriction is not applied - for automatic statistical analysis via Tables/Summary the issue is more severe: at the end, there is&amp;nbsp; the wrong result - no Data Filter on the left of a Dashboard where the user can detect and correct the issue.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Since Jmp 17, there is this cool new feature:&amp;nbsp;&lt;STRONG&gt;Remove Excluded Rows&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;unfortunately, there is:&lt;BR /&gt;Bug # 2:&lt;/P&gt;&lt;P&gt;If you have Jmp 17 or Jmp 18 EA, please try run this code twice -&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;&amp;nbsp;store your data, Jmp will crash!&lt;/FONT&gt;&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; Summary(
	Local Data Filter( Add Filter( columns( :sex ), Where( :sex == "F" ) ) ),
	Group( :sex ),
	Mean( :height ),
	Remove Excluded Groups,
	Link to original data table(0)
);

// today no females
dt &amp;lt;&amp;lt; Select where( :height &amp;lt; 67 ) &amp;lt;&amp;lt; Exclude;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After running the code the first time, due to the restriction of the data filter, the summary table shows the average height of the female entries. Then the line at the end of the code excludes all rows with height &amp;lt; 67, among them all female entries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, run the code again:&lt;/P&gt;&lt;P&gt;The rows with sex="F" are still there, they are just &lt;EM&gt;excluded&lt;/EM&gt;. So, compared to bug #1, here the Data Filter doesn't get reset.&lt;BR /&gt;It will restrict the analysis to rows with sex = "F". These rows are excluded by the data filter of the data table.&lt;BR /&gt;In total, there is no matching non-excluded row. As a consequence:&amp;nbsp;&lt;SPAN&gt;Remove Excluded Rows has a lot to do - and gets angry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;So angry that Jmp crashes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's clear that without matching rows the user will have little benefit from the result. But in a long script there could be something like:&lt;BR /&gt;Please average the height of the female students in the class who also match some additional filter settings which were applied via the main table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under the line:&lt;/P&gt;&lt;P&gt;Let's assume that I want to count the female students in a class and calculate their average height.&amp;nbsp; By using &lt;STRONG&gt;Jmp/Tables/Summary&lt;/STRONG&gt; with a Data Filter:&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;if there are no female students in the class, Jmp will count the &lt;STRONG&gt;male&lt;/STRONG&gt; students and average their ages&amp;nbsp;(!!!)&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;if there are &amp;gt;=1 female students in the class, but the respective rows got excluded, Jmp will crash (!!!)&lt;BR /&gt;[if&amp;nbsp;&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Remove Excluded Rows&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt;is enabled]&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 03 Jun 2024 18:20:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718031#M89978</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-06-03T18:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718032#M89979</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very interesting.&lt;/P&gt;
&lt;P&gt;I replicated your findings in JMP 17 and 18.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you have submitted this issue to support@jmp.com&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2024 16:01:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718032#M89979</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-01-20T16:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718033#M89980</link>
      <description>&lt;P&gt;Yes I just received the Ticket number:&amp;nbsp; TS-00124252&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2024 16:22:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718033#M89980</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-01-20T16:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718118#M90011</link>
      <description>&lt;P&gt;i received the TS track today and will be investigating and will post back anything that is found.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 16:47:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718118#M90011</guid>
      <dc:creator>Mandy_Chambers</dc:creator>
      <dc:date>2024-01-22T16:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718128#M90016</link>
      <description>&lt;P&gt;Hi Mandy, thanks for looking into this so quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 18:16:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718128#M90016</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-01-22T18:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718158#M90024</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Dashboards,&amp;nbsp;&lt;LI-MESSAGE title="Outlier (👽) screening with Jmp Dashboards - how?" uid="656888" url="https://community.jmp.com/t5/Discussions/Outlier-screening-with-Jmp-Dashboards-how/m-p/656888#U656888" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;TS-00046650, it's "just" annoying that the restriction is not applied - for automatic statistical analysis via Tables/Summary the issue is more severe: at the end, there is&amp;nbsp; the wrong result - no Data Filter on the left of a Dashboard where the user can detect and correct the issue.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Same topic - &amp;gt; same solution :&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Local Data Filter: option: restrict or do not restrict to current data" uid="657423" url="https://community.jmp.com/t5/JMP-Wish-List/Local-Data-Filter-option-restrict-or-do-not-restrict-to-current/m-p/657423#U657423" 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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 05:05:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/718158#M90024</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-01-23T05:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: 2 bugs with Tables/Summary</title>
      <link>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/798435#M97423</link>
      <description>&lt;P&gt;The second bug got fixed in JMP18.1 (or before. I just noticed it now)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nice workaround for the first bug:&amp;nbsp;&lt;BR /&gt;&lt;LI-MESSAGE title="🙏 Column Property: Inclusive Values" uid="730865" url="https://community.jmp.com/t5/JMP-Wish-List/Column-Property-Inclusive-Values/m-p/730865#U730865" 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;</description>
      <pubDate>Thu, 12 Sep 2024 20:26:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/2-bugs-with-Tables-Summary/m-p/798435#M97423</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-12T20:26:18Z</dc:date>
    </item>
  </channel>
</rss>

