<?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: Summarize Without Alphabetizing in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/59795#M32725</link>
    <description>&lt;P&gt;I can officially confirm that Summarize() does now support the Value Ordering property as of JMP 14 and later.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jun 2018 20:38:11 GMT</pubDate>
    <dc:creator>Audrey_Shull</dc:creator>
    <dc:date>2018-06-08T20:38:11Z</dc:date>
    <item>
      <title>Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47810#M27228</link>
      <description>&lt;P&gt;I have a dataset where the order is important and I want to be able to summarize a character column with repeat values without the results being in alphabetical order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;column_A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;f&lt;/P&gt;&lt;P&gt;f&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Usual methods return {a,b,c,d,e,f},&lt;/P&gt;&lt;P&gt;I am trying to get {f,b,d,a,c,e}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 23:48:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47810#M27228</guid>
      <dc:creator>nbullen</dc:creator>
      <dc:date>2017-11-28T23:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47812#M27229</link>
      <description>&lt;P&gt;Sometimes, just by asking you end up freeing your mind to possible solutions. I give to you, the non-alphabetizing summarizer:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;no_sort_summarize = function({list},
	design_matrix = Design( list, list ); //compares the list to itself returning a 1 in the position of the first match for each repetition
	summarized_matrix = (Transpose(V Sum(design_matrix))); //flatten matrix into one row and transpose into columns
	unique_value_positions = Loc(summarized_matrix); //return only the position of the first instance of a value thus creating a summary
	return(list[unique_value_positions]); //subscript list to return the non-sorted summarized values 
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 00:31:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47812#M27229</guid>
      <dc:creator>nbullen</dc:creator>
      <dc:date>2017-11-29T00:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47816#M27231</link>
      <description>&lt;P&gt;If the order you want to summarize by is the order found in the data, you can set the column property, "Row Order Level" for Column_A, and then run&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Tables==&amp;gt;Summary&lt;/P&gt;
&lt;P&gt;and the data will be summarized in the order the grouping column was found in the data table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="roworder.PNG" style="width: 510px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8480iF61EA99A55584986/image-size/large?v=v2&amp;amp;px=999" role="button" title="roworder.PNG" alt="roworder.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 02:35:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47816#M27231</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-11-29T02:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47829#M27239</link>
      <description>&lt;P&gt;And, more generally, you can use the Value Ordering column property to impose whatever order on the variable you wish.&amp;nbsp; That order will be used in any subsequent analysis (tablulation, graphs, etc.).&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 13:35:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47829#M27239</guid>
      <dc:creator>dale_lehman</dc:creator>
      <dc:date>2017-11-29T13:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47876#M27267</link>
      <description>&lt;P&gt;Unfortunately, in JMP 13 and earlier the &lt;A href="http://www.jmp.com/support/help/13-2/Store_Summary_Statistics_in_Global_Variables.shtml" target="_self"&gt;Summarize()&lt;/A&gt; JSL function doesn't&amp;nbsp;respect the &lt;A href="http://www.jmp.com/support/help/13-2/Value_Ordering.shtml#" target="_self"&gt;Value Ordering&lt;/A&gt; property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've confirmed that this will be corrected&amp;nbsp;in JMP 14.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 19:46:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47876#M27267</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2017-11-29T19:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47878#M27268</link>
      <description>&lt;P&gt;Another reason I'm glad I rarely script anything - Tabulate works just fine with Value Ordering.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 19:56:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/47878#M27268</guid>
      <dc:creator>dale_lehman</dc:creator>
      <dc:date>2017-11-29T19:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/59795#M32725</link>
      <description>&lt;P&gt;I can officially confirm that Summarize() does now support the Value Ordering property as of JMP 14 and later.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jun 2018 20:38:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/59795#M32725</guid>
      <dc:creator>Audrey_Shull</dc:creator>
      <dc:date>2018-06-08T20:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/242022#M47815</link>
      <description>&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have JMP 14, but my summarize() function is still alphabetic, does the non-alphabetic version have another name?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Philippe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 07:14:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/242022#M47815</guid>
      <dc:creator>PhiIippe</dc:creator>
      <dc:date>2020-01-21T07:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Without Alphabetizing</title>
      <link>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/242023#M47816</link>
      <description>&lt;P&gt;I have tried setting the Value Ordering column property for both numeric and character columns under JMP 14.3 and the Summarize() function uses the Value Ordering property as it's order.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 07:25:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summarize-Without-Alphabetizing/m-p/242023#M47816</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-21T07:25:35Z</dc:date>
    </item>
  </channel>
</rss>

