<?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: Exclude Grouping values in nested groups in graph builder. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60343#M32894</link>
    <description>&lt;P&gt;You may find some convincing material here:&amp;nbsp;&lt;A title="New Features in JMP® 14" href="https://www.jmp.com/en_us/software/new-release/new-in-jmp-and-jmp-pro.html" target="_self"&gt;Explore These New Features in JMP&lt;SUP&gt;®&lt;/SUP&gt;&amp;nbsp;14&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jun 2018 17:05:43 GMT</pubDate>
    <dc:creator>John_Powell_JMP</dc:creator>
    <dc:date>2018-06-14T17:05:43Z</dc:date>
    <item>
      <title>Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37180#M21823</link>
      <description>&lt;P&gt;I have a heat map that needs some nested groups (in order to properly show values inside the heat map) squares. &amp;nbsp;My issue is that a lot of the rows are entirely missing because it forces every group to exist. &amp;nbsp;Is there a way to only show valid groups? &amp;nbsp;For example:&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");

rows = dt &amp;lt;&amp;lt; Get Rows Where(:age == 14 &amp;amp; :sex == "M");
dt &amp;lt;&amp;lt; delete rows(rows);

dt &amp;lt;&amp;lt; Graph Builder(
	Variables( Group Y( :sex ), Group Y( :age ), Color( :height ) ),
	Elements( Heatmap( Legend( 4 ) ), Caption Box( Legend( 5 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Gives.&amp;nbsp;&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="3-14-2017 4-26-44 PM.png" style="width: 582px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/5587i9B014AE41809151B/image-size/large?v=v2&amp;amp;px=999" role="button" title="3-14-2017 4-26-44 PM.png" alt="3-14-2017 4-26-44 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't want to see the 14 year old Male category. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or, if you know a better way to show the means for a column inside the square, I'd take that too.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2017 23:29:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37180#M21823</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2017-03-14T23:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37495#M21994</link>
      <description>&lt;P&gt;Would labeled bars work?&lt;/P&gt;
&lt;PRE&gt;dt &amp;lt;&amp;lt; Graph Builder(
	Size( 456, 413 ),
	Show Control Panel( 0 ),
	Variables( X( :height ), Y( :sex ), Y( :age, Position( 1 ) ), Color( :height ) ),
	Elements( Bar( X, Y( 1 ), Y( 2 ), Legend( 5 ), Label( "Label by Value" ) ) ),
	SendToReport( Dispatch( {}, "sex", ScaleBox, {Reversed Scale} ) )
);
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LabeledNestedBars.PNG" style="width: 537px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/5694iCB4A5948007E3DCC/image-size/large?v=v2&amp;amp;px=999" role="button" title="LabeledNestedBars.PNG" alt="LabeledNestedBars.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 14:45:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37495#M21994</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2017-03-24T14:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37547#M22020</link>
      <description>&lt;P&gt;No because in actuality it's a 2d array. &amp;nbsp;More like this. &amp;nbsp;&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="3-24-2017 10-56-15 AM.png" style="width: 613px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/5701iAEF681664FE15D76/image-size/large?v=v2&amp;amp;px=999" role="button" title="3-24-2017 10-56-15 AM.png" alt="3-24-2017 10-56-15 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:27:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/37547#M22020</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2017-03-27T18:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60290#M32866</link>
      <description>&lt;P&gt;Going to Bump this because it has come up again.&amp;nbsp; Anyone have thoughts on a good way to do this?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 20:23:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60290#M32866</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2018-06-13T20:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60295#M32868</link>
      <description>&lt;P&gt;If you have JMP 14, heatmap now has a labeling capability. You may not need to use groups:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heatmap with Labels" style="width: 617px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11139iD1AE37D7E4302B4C/image-size/large?v=v2&amp;amp;px=999" role="button" title="HeatmapWithLabels.PNG" alt="Heatmap with Labels" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Heatmap with Labels&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 20:47:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60295#M32868</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2018-06-13T20:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60339#M32890</link>
      <description>&lt;P&gt;Awesome! Now I just have to convince them to upgrade.&amp;nbsp; :p&lt;/img&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More than appreciated John,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;V&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:58:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60339#M32890</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2018-06-14T15:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude Grouping values in nested groups in graph builder.</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60343#M32894</link>
      <description>&lt;P&gt;You may find some convincing material here:&amp;nbsp;&lt;A title="New Features in JMP® 14" href="https://www.jmp.com/en_us/software/new-release/new-in-jmp-and-jmp-pro.html" target="_self"&gt;Explore These New Features in JMP&lt;SUP&gt;®&lt;/SUP&gt;&amp;nbsp;14&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 17:05:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-Grouping-values-in-nested-groups-in-graph-builder/m-p/60343#M32894</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2018-06-14T17:05:43Z</dc:date>
    </item>
  </channel>
</rss>

