<?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: Table summary -  Subgroups in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589757#M79445</link>
    <description>&lt;P&gt;One disadvantage is the additional steps it takes to output a summary data table, in comparison to the Summary Platform. If one is just going to use Tabulate as a device to create a new data table, there should be an check box on the dialog box that when checked, does not display a report window, and automatically generates the output data table.&lt;/P&gt;</description>
    <pubDate>Sat, 14 Jan 2023 15:37:54 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2023-01-14T15:37:54Z</dc:date>
    <item>
      <title>Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589616#M79430</link>
      <description>&lt;P&gt;The &lt;STRONG&gt;Subgroup&lt;/STRONG&gt;&amp;nbsp;option in &lt;STRONG&gt;Table/Summary&lt;/STRONG&gt; is cool to get separate statistics for subgroups of the selected groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When several columns are selected as subgroups, all possible combinations show up in an hierarchical list.&lt;/P&gt;&lt;P&gt;For the example below, every single day of the week X every single day of the month gets a subgroup, ending up with 7 * 31 = 271 subgroups &lt;STRONG&gt;(dom, dow)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1673643012260.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49066i73AE1A93CE857BBD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1673643012260.png" alt="hogi_1-1673643012260.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an option to tell &lt;STRONG&gt;Table/Summary&lt;/STRONG&gt;&amp;nbsp;that subgroups should not be hierarchical/&lt;EM&gt;intersected&lt;/EM&gt;, but just put next to each other?&lt;BR /&gt;Or do I have to generate the summary tables separately and join them later to get such a summary?&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="hogi_2-1673643135476.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49067i9C6CA8C9E5FE7ABC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1673643135476.png" alt="hogi_2-1673643135476.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open( "$SAMPLE_DATA/Airline Delays.jmp" );


Data Table( "Airline Delays" ) &amp;lt;&amp;lt; Summary(
	Group( :Airline ),
	N,
	Subgroup( :Day of Week, :Day of Month  ),
	Freq( "None" ),
	Weight( "None" )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:43:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589616#M79430</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-08T16:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589647#M79432</link>
      <description>&lt;P&gt;Yes you would have to run separage Summary Platforms and then Join them together to get what you want, or you&amp;nbsp; could run a Tabulate Platform and get what you want in one step.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1673652035752.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49068i7D2EAA9A5AF07B21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1673652035752.png" alt="txnelson_0-1673652035752.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1673652071784.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49069i50545DA79FAD0EB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1673652071784.png" alt="txnelson_1-1673652071784.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = New Table( "year/day",
	add rows( 200 ),
	New Column( "Airline",
		character,
		set each value(
			aList = {"Delta", "Northwest"};
			aList[Random Integer( 1, 2 )];
		)
	),
	New Column( "day",
		character,
		set each value(
			dList = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
			dList[Random Integer( 1, 7 )];
		)
	),
	New Column( "n", ordinal, set each value( Random Integer( 1, 12 ) ) )
);

tab =Tabulate(
	Add Table(
		Column Table( Grouping Columns( :day ) ),
		Column Table( Grouping Columns( :n ) ),
		Row Table( Grouping Columns( :Airline ) )
	)
);
tab&amp;lt;&amp;lt;make into data table;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 23:21:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589647#M79432</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-01-13T23:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589678#M79438</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;, thank you for the ultra-fast response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One example where Tabulate is really ahead of Table/Summary :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;nice flexibility of&amp;nbsp; hierarchical and side-by-side grouping and subgrouping :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&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; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :sex, :age ) ),
		Row Table( Grouping Columns( :name ) )
	)
);

dt &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :sex ) ),
		Column Table( Grouping Columns( :age ) ),
		Row Table( Grouping Columns( :name ) )
	)
);

dt &amp;lt;&amp;lt;Tabulate(
	Add Table(
		Column Table( Grouping Columns( :name ) ),
		Row Table( Grouping Columns( :sex ) ),
		Row Table( Grouping Columns( :age ) )
	)
);

dt &amp;lt;&amp;lt;Tabulate(
	Add Table(
		Column Table( Grouping Columns( :name ) ),
		Row Table( Grouping Columns( :sex ) ,
		 Grouping Columns( :age ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it has so many disadvantages ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From my point of view it makes sense to add this flexibility (hierarchical vs. side-by-side groups and subgroups)&amp;nbsp;also to&amp;nbsp;&lt;STRONG&gt;Table/Summary&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&amp;nbsp;here is the wish:&lt;BR /&gt;&lt;LI-MESSAGE title="Table/Summary option: side-by-side (sub)groups" uid="589671" url="https://community.jmp.com/t5/JMP-Wish-List/Table-Summary-option-side-by-side-sub-groups/m-p/589671#U589671" 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;let's hope that JMP Dev teams thinks alike ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 20:21:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589678#M79438</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T20:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589756#M79444</link>
      <description>&lt;P&gt;Just curious - what are the disadvantages of Tabulate?&amp;nbsp; I've always found it superior to Table Summary and as flexible as I need.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2023 15:05:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589756#M79444</guid>
      <dc:creator>dale_lehman</dc:creator>
      <dc:date>2023-01-14T15:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589757#M79445</link>
      <description>&lt;P&gt;One disadvantage is the additional steps it takes to output a summary data table, in comparison to the Summary Platform. If one is just going to use Tabulate as a device to create a new data table, there should be an check box on the dialog box that when checked, does not display a report window, and automatically generates the output data table.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2023 15:37:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589757#M79445</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-01-14T15:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table summary -  Subgroups</title>
      <link>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589758#M79446</link>
      <description>&lt;P&gt;additional disadvantages are listed in the&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Table-Summary-don-t-intersect-the-subgroups/idi-p/589671" target="_self"&gt;wish&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-MESSAGE title="Table/Summary option: side-by-side (sub)groups" uid="589671" url="https://community.jmp.com/t5/JMP-Wish-List/Table-Summary-option-side-by-side-sub-groups/m-p/589671#U589671" 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;- to motivate why it makes sense to close this tiny gap :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 20:19:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-summary-Subgroups/m-p/589758#M79446</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T20:19:31Z</dc:date>
    </item>
  </channel>
</rss>

