<?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: summary table sorted in the wrong order if there are value labels in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12875#M12200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ChungWei,&lt;/P&gt;&lt;P&gt;I don't think so. JMP has the perfect flexibility to offer value labels on top of the values themselves which is complementary and should not be a substitute. this allows for multidimensionality.&lt;/P&gt;&lt;P&gt;table summary is the only case i came across so far in the program that has this behavior of guessing that value labels should be recoded on the fly.&lt;/P&gt;&lt;P&gt;please let me know if you are aware of any other platforms/processes that do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in addition i do not find it correct to sort by the labels rather than the values. consider the following: using a variable that takes values from 1-5 where the user has labeled 1 as "Low" and 5 as "High". in this case the summary by that variable will come in an unintuitive order. (i.e. High, Low, 2, 3, 4 instead of low, 2, 3, 4, High). and that is in a case of trivial labeling. if labeling is more "sophisticated" then the difference between intuition and results can increase even further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Jun 2015 21:51:27 GMT</pubDate>
    <dc:creator>ron_horne</dc:creator>
    <dc:date>2015-06-20T21:51:27Z</dc:date>
    <item>
      <title>summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12865#M12190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;just wondered if i came across a bug in the program.&lt;/P&gt;&lt;P&gt;table summary is known to produce a sorted table by the grouping variable. i just noticed it is not the case if there are value labels (and no value ordering).&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/P&gt;&lt;P&gt;// this will produce a correctly sorted table&lt;/P&gt;&lt;P&gt;Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary( Group( :age ), Link to original data table( 0 ) );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// and here is where thing go a bit funny &lt;/P&gt;&lt;P&gt;:age &amp;lt;&amp;lt; value labels( {13 = "thirteen"} );&lt;/P&gt;&lt;P&gt;Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary( Group( :age ), Link to original data table( 0 ) );&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2015 23:21:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12865#M12190</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-16T23:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12866#M12191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your script didn't behave as you describe. When I ran your code, it applied the :age &amp;lt;&amp;lt;value labels() command to the first summary table, and it was already sorted and therefore in the correct order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This modified code behaves as you describe. I don't have an answer for you as to why it is happening but maybe it will help someone else trouble shoot. I'm running JMP standard 11.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/P&gt;&lt;P&gt;dt = current data table();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// this will produce a correctly sorted table&lt;/P&gt;&lt;P&gt;Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary( Group( :age ), Link to original data table( 0 ) );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// and here is where thing go a bit funny&lt;/P&gt;&lt;P&gt;//as column(dt, :age) &amp;lt;&amp;lt; value labels( {13 = "thirteen"} ); //&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;-- for some reason this doesn't change the "Big Class" table for me. It still changes the above summary table even though i specify dt. Use below code to fix it.&lt;/P&gt;&lt;P&gt;current data table(dt);&lt;/P&gt;&lt;P&gt;:age &amp;lt;&amp;lt; value labels( {13 = "thirteen"} );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary( Group( :age ), Link to original data table( 0 ) );&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:56:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12866#M12191</guid>
      <dc:creator>mikedriscoll</dc:creator>
      <dc:date>2015-06-17T13:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12867#M12192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In summary, the categories of the grouping column are ordered by the labels of the corresponding values.&lt;/P&gt;&lt;P&gt;For categories without labels, their values are formatted into text strings and ranked after the sorted labels (or before, if sorting the grouping column in descending order).&lt;/P&gt;&lt;P&gt;This is what you observed in your example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 14:38:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12867#M12192</guid>
      <dc:creator>chungwei</dc:creator>
      <dc:date>2015-06-17T14:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12868#M12193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mjdeez,&lt;/P&gt;&lt;P&gt;i was using version 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 21:23:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12868#M12193</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-17T21:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12869#M12194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ChungWei,&lt;/P&gt;&lt;P&gt;i just find it a little surprising the sorting is done by labels and not by value. i was actually counting on the sorting and was not expecting this at all. if it is intended it is probably trying to think one step ahead of the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 21:26:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12869#M12194</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-17T21:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12870#M12195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the issue here is what should JMP do if there are two different values mapped to the same value label.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your example you've only got one but consider this:&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #032ce4;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier; color: #032ce4;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;current data table&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;age &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;value labels&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;13&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;"thirteen"&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;17&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;"thirteen"&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;}&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;Data Table&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #942193;"&gt;"Big Class"&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;Summary&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; Group&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;age &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Link to original data table&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since "thirteen" now represents two different ages it can't sort in either place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jeff &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 21:41:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12870#M12195</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2015-06-17T21:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12871#M12196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While that makes sense, Jeff, Graph Builder() seems to disagree with Summary() on how to sort categories with value labels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #000000;"&gt;dt&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;age &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;value labels&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;({&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;13&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;"thirteen"&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;17&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;"thirteen"&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;})&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;dtsum&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dt &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;Summary&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;Group&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;age&lt;STRONG&gt;)))&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;dtsum &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;Graph Builder&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;Variables&lt;STRONG&gt;(&lt;/STRONG&gt;X&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;age&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Y&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;N Rows&lt;STRONG&gt;)))&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-family: Courier; color: #008f00;"&gt;// And "thirteen" seems to represent 13 only&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;Show&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dtsum&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;age &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;get values&lt;/STRONG&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;Col Sum&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dtsum&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;age&lt;STRONG&gt;))&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 22:11:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12871#M12196</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2015-06-17T22:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12872#M12197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jeff and MS.&lt;/P&gt;&lt;P&gt;i just find it inappropriate that jmp takes value labels and all the sudden assumes the user has intended to recode the variable.&lt;/P&gt;&lt;P&gt;ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 10:25:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12872#M12197</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-18T10:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12873#M12198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Jeff, this behavior of "recoding" by value labels does not happen (an shouldn't) in any of the analysis platforms.&lt;/P&gt;&lt;P&gt;even in other table menu options it doesn't do it such as split.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt = Open("$SAMPLE_DATA/Big Class.jmp");&lt;/P&gt;&lt;P&gt;dt:age &amp;lt;&amp;lt; value labels({13 = "thirteen", 17 = "thirteen"});&lt;/P&gt;&lt;P&gt;Data Table( "Big Class" ) &amp;lt;&amp;lt; Split(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Split By( :age ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Split( :height, :weight ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Remaining Columns( Drop All )&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 11:16:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12873#M12198</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-18T11:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12874#M12199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When somebody assigns the same label to 2 different values, wouldn't you think that he would like to group the 2&amp;nbsp; together ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 18:53:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12874#M12199</guid>
      <dc:creator>chungwei</dc:creator>
      <dc:date>2015-06-19T18:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12875#M12200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ChungWei,&lt;/P&gt;&lt;P&gt;I don't think so. JMP has the perfect flexibility to offer value labels on top of the values themselves which is complementary and should not be a substitute. this allows for multidimensionality.&lt;/P&gt;&lt;P&gt;table summary is the only case i came across so far in the program that has this behavior of guessing that value labels should be recoded on the fly.&lt;/P&gt;&lt;P&gt;please let me know if you are aware of any other platforms/processes that do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in addition i do not find it correct to sort by the labels rather than the values. consider the following: using a variable that takes values from 1-5 where the user has labeled 1 as "Low" and 5 as "High". in this case the summary by that variable will come in an unintuitive order. (i.e. High, Low, 2, 3, 4 instead of low, 2, 3, 4, High). and that is in a case of trivial labeling. if labeling is more "sophisticated" then the difference between intuition and results can increase even further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jun 2015 21:51:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12875#M12200</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-06-20T21:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12876#M12201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The case that you mentioned,&amp;nbsp; 1 labeled as low, 5 as high, comes out as you expected, low is sorted first, high is sorted last in summary.&lt;/P&gt;&lt;P&gt;Other platforms that do that are tabulate and chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 13:02:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12876#M12201</guid>
      <dc:creator>chungwei</dc:creator>
      <dc:date>2015-06-22T13:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: summary table sorted in the wrong order if there are value labels</title>
      <link>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12877#M12202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Grouping the data by labels gives the flexibility of aggregating different values into a group without actually changing your data.&lt;/P&gt;&lt;P&gt;It also removes the ambiguity, what to do when 2 values are mapped to the same label.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 13:07:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/summary-table-sorted-in-the-wrong-order-if-there-are-value/m-p/12877#M12202</guid>
      <dc:creator>chungwei</dc:creator>
      <dc:date>2015-06-22T13:07:07Z</dc:date>
    </item>
  </channel>
</rss>

