<?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 Pareto Analysis - generate table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688753#M87464</link>
    <description>&lt;P&gt;What is the fastest/easiest way to generate a table with he information that I get via % of total in Graph Builder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, % of total in Summary and Tabulate take all rows of the table as a references.&lt;/P&gt;&lt;P&gt;But I need a separate analysis for each group - like in Graph Builder or in Pareto.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Per Unit Rates in Pareto gives the correct list - but unfortunately, it's into 2 DisplayBoxes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As this is a very common task, I guess there is a direct way to generate such a list, but I couldn't find it ....&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; Pareto Plot(
	Cause( :age ),
	X( :sex ),
	Percent Scale( 1 ),
	Show cumulative Percent Curve( 0 ),
	Per Unit Rates( 1 )
);

dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :age ), Group X( :sex ) ),
	Elements(
		Bar( X, Summary Statistic( "% of  Total" ) )
	)
);

dt  &amp;lt;&amp;lt; Summary(
	Group( :sex ),
	"% of Total"n( :sex ),
	Subgroup( :age )
);

dt &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :age ), Statistics( "% of Total"n ) ),
		Row Table( Grouping Columns( :sex ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 19 Oct 2023 18:12:16 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-10-19T18:12:16Z</dc:date>
    <item>
      <title>Pareto Analysis - generate table</title>
      <link>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688753#M87464</link>
      <description>&lt;P&gt;What is the fastest/easiest way to generate a table with he information that I get via % of total in Graph Builder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, % of total in Summary and Tabulate take all rows of the table as a references.&lt;/P&gt;&lt;P&gt;But I need a separate analysis for each group - like in Graph Builder or in Pareto.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Per Unit Rates in Pareto gives the correct list - but unfortunately, it's into 2 DisplayBoxes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As this is a very common task, I guess there is a direct way to generate such a list, but I couldn't find it ....&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; Pareto Plot(
	Cause( :age ),
	X( :sex ),
	Percent Scale( 1 ),
	Show cumulative Percent Curve( 0 ),
	Per Unit Rates( 1 )
);

dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :age ), Group X( :sex ) ),
	Elements(
		Bar( X, Summary Statistic( "% of  Total" ) )
	)
);

dt  &amp;lt;&amp;lt; Summary(
	Group( :sex ),
	"% of Total"n( :sex ),
	Subgroup( :age )
);

dt &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :age ), Statistics( "% of Total"n ) ),
		Row Table( Grouping Columns( :sex ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:12:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688753#M87464</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-19T18:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pareto Analysis - generate table</title>
      <link>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688763#M87467</link>
      <description>&lt;P&gt;Tabulate most likely&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1697739678574.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/57822iC363E8BE49E4F8E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1697739678574.png" alt="jthi_0-1697739678574.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:21:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688763#M87467</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-10-19T18:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pareto Analysis - generate table</title>
      <link>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688767#M87468</link>
      <description>&lt;P&gt;Or distribution&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1697739742162.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/57823i19703D914ED7C6A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1697739742162.png" alt="jthi_0-1697739742162.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:22:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688767#M87468</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-10-19T18:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pareto Analysis - generate table</title>
      <link>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688769#M87469</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Tabulate most likely&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nice, thanks.&lt;BR /&gt;&lt;BR /&gt;On a discovery summit there was a discussion about the pros and cons of Analyze/Tabulate and Tables/Summary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, + 1 Point for Tabulate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's interesting that the functionality is so "distributed" over the Platforms.&lt;BR /&gt;I would expect that each platform provides all possibilities and that the user can choose the platform by some personal preferences.&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="hogi_0-1697740149485.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/57824i9BFF1FD42D0636AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1697740149485.png" alt="hogi_0-1697740149485.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Distribution has the same issue as Pareto: Result is split over several Display Boxes.&lt;/P&gt;&lt;P&gt;-&amp;gt; I will stick to &lt;STRONG&gt;Tabulate&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:32:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pareto-Analysis-generate-table/m-p/688769#M87469</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-19T18:32:17Z</dc:date>
    </item>
  </channel>
</rss>

