<?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: How to add Kurtosis and Skewness to Tabulate in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/883596#M104772</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4386"&gt;@Byron_JMP&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;wouldn't it be easier if Tabulate included more, or maybe all the univariate statistics included in the distribution platform?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;besides Tabulate, the same holds for:&lt;/P&gt;
&lt;P&gt;- Tables/Summary &lt;BR /&gt;- and the Summary Statistics in Graph Builder!&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;I submitted the idea to synchronize the statistics options of the different platforms&amp;nbsp;Together with&amp;nbsp;&lt;LI-MESSAGE title="Col N Categories (💚)." uid="592610" url="https://community.jmp.com/t5/JMP-Wish-List/Col-N-Categories/m-p/592610#U592610" 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;&lt;/P&gt;
&lt;P&gt;The original title was something like&amp;nbsp; &lt;STRONG&gt;Col N Categories - and all the others ...&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Col N Categories will come with JMP 19 (with the name&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Col N Unique()&lt;/FONT&gt;) - so, the wish got marked as "delivered".&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;"&lt;EM&gt;&lt;STRONG&gt;for all the others&lt;/STRONG&gt;&lt;/EM&gt;" -&amp;nbsp;here is a new wish:&lt;LI-MESSAGE title="synchronize Summary Statistics (Tables/Summary - Tabulate - Graph Builder Summary Statistics - Distribution - Header Statistics)" uid="883581" url="https://community.jmp.com/t5/JMP-Wish-List/Please-synchronize-Summary-Statistics-Tables-Summary-Tabulate/m-p/883581#U883581" 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;unfortunately, it starts again with 0 Kudos : (&lt;/P&gt;
&lt;P&gt;Still a long time till it gets the chance to get into a future version of JMP - but maybe somebody sees this post and says:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;I'm staff, [and] I can[] do this.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Sun, 06 Jul 2025 15:54:47 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-07-06T15:54:47Z</dc:date>
    <item>
      <title>How to add Kurtosis and Skewness to Tabulate</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/363963#M61362</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to add "Kurtosis" and "Skewness" to my row table. How do I do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table();
tab = dt &amp;lt;&amp;lt; Tabulate(
    Show Control Panel( 0 ),
    Add Table(
        Column Table( Analysis Columns( :VAR1, :VAR2, :VAR3, ) ),
        Row Table( Statistics( Mean, Std Dev, Min, Max, Range, CV, Median ) )
    )
);
Wait( 0.1 );
dtTab = tab &amp;lt;&amp;lt; makeIntoDataTable;
Write( "Make a new data table from the Tabulate Platform", "\!N" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:26:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/363963#M61362</guid>
      <dc:creator>JMPPRO</dc:creator>
      <dc:date>2023-06-10T23:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add Kurtosis and Skewness to Tabulate</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/364029#M61368</link>
      <description>&lt;P&gt;I think you cannot get kurtosis and skewness through tabulate but they can be found from Distribution platform.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create Distribution with only distributions with the variables you are interested in&lt;/LI&gt;&lt;LI&gt;Hold CTRL (this will make the options affect all of the distributions) and click red triangle in one of the distributions of the variables&lt;/LI&gt;&lt;LI&gt;Go to Display Options / Customize Summary Statistics -&amp;gt; select statistics you are interested in&lt;/LI&gt;&lt;LI&gt;Right click on one of the summary statistics tables in Distribution platform and choose Make Combined Data Table&lt;/LI&gt;&lt;LI&gt;Split result data table if needed&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Example script with Semiconductor Capability sample data (scripts copy pasted almost directly from JMP):&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

platform = dt &amp;lt;&amp;lt;
Distribution(
	Continuous Distribution(
		Column(:NPN1),
		Summary Statistics(1),
		Customize Summary Statistics(
			Std Err Mean(0),
			Upper Mean Confidence Interval(0),
			Lower Mean Confidence Interval(0),
			N(0),
			Skewness(1),
			Kurtosis(1),
			CV(1),
			Minimum(1),
			Maximum(1),
			Median(1)
		),
		Process Capability(0)
	),
	Continuous Distribution(
		Column(:PNP1),
		Summary Statistics(1),
		Customize Summary Statistics(
			Std Err Mean(0),
			Upper Mean Confidence Interval(0),
			Lower Mean Confidence Interval(0),
			N(0),
			Skewness(1),
			Kurtosis(1),
			CV(1),
			Minimum(1),
			Maximum(1),
			Median(1)
		),
		Process Capability(0)
	),
	Continuous Distribution(
		Column(:PNP2),
		Summary Statistics(1),
		Customize Summary Statistics(
			Std Err Mean(0),
			Upper Mean Confidence Interval(0),
			Lower Mean Confidence Interval(0),
			N(0),
			Skewness(1),
			Kurtosis(1),
			CV(1),
			Minimum(1),
			Maximum(1),
			Median(1)
		),
		Process Capability(0)
	),
	Histograms Only
);
Wait(0);
dt_statistics = Report(platform)[Outline Box("Distributions")][Outline Box("NPN1")][
Outline Box("Summary Statistics")][Table Box(1)] &amp;lt;&amp;lt; Make Combined Data Table;
Report(platform) &amp;lt;&amp;lt; Close Window;
Close(dt, no save);
dt_split = dt_statistics &amp;lt;&amp;lt; Split(
	Split By(:Column 1),
	Split(:Column 2),
	Group(:Y),
	Sort by Column Property
);
Close(dt_statistics, no save);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Mar 2021 19:53:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/364029#M61368</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-03-01T19:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add Kurtosis and Skewness to Tabulate</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/364330#M61396</link>
      <description>&lt;P&gt;That's really a pretty good question, maybe reframing it another way..&lt;/P&gt;
&lt;P&gt;Rather than combining statistics, using complex scripting, wouldn't it be easier if Tabulate included more, or maybe all the univariate statistics included in the distribution platform?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;..Yes, yes it would.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm staff, so I can't do this, but you could add this to the Wish List (its in blue menu bar at the top of the window.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 13:07:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/364330#M61396</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2021-03-02T13:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to add Kurtosis and Skewness to Tabulate</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/883596#M104772</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4386"&gt;@Byron_JMP&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;wouldn't it be easier if Tabulate included more, or maybe all the univariate statistics included in the distribution platform?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;besides Tabulate, the same holds for:&lt;/P&gt;
&lt;P&gt;- Tables/Summary &lt;BR /&gt;- and the Summary Statistics in Graph Builder!&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;I submitted the idea to synchronize the statistics options of the different platforms&amp;nbsp;Together with&amp;nbsp;&lt;LI-MESSAGE title="Col N Categories (💚)." uid="592610" url="https://community.jmp.com/t5/JMP-Wish-List/Col-N-Categories/m-p/592610#U592610" 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;&lt;/P&gt;
&lt;P&gt;The original title was something like&amp;nbsp; &lt;STRONG&gt;Col N Categories - and all the others ...&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Col N Categories will come with JMP 19 (with the name&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Col N Unique()&lt;/FONT&gt;) - so, the wish got marked as "delivered".&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;"&lt;EM&gt;&lt;STRONG&gt;for all the others&lt;/STRONG&gt;&lt;/EM&gt;" -&amp;nbsp;here is a new wish:&lt;LI-MESSAGE title="synchronize Summary Statistics (Tables/Summary - Tabulate - Graph Builder Summary Statistics - Distribution - Header Statistics)" uid="883581" url="https://community.jmp.com/t5/JMP-Wish-List/Please-synchronize-Summary-Statistics-Tables-Summary-Tabulate/m-p/883581#U883581" 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;unfortunately, it starts again with 0 Kudos : (&lt;/P&gt;
&lt;P&gt;Still a long time till it gets the chance to get into a future version of JMP - but maybe somebody sees this post and says:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;I'm staff, [and] I can[] do this.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sun, 06 Jul 2025 15:54:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-Kurtosis-and-Skewness-to-Tabulate/m-p/883596#M104772</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-06T15:54:47Z</dc:date>
    </item>
  </channel>
</rss>

