<?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: Graph Builder - Order by in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906044#M106444</link>
    <description>&lt;P&gt;&lt;SPAN&gt;subcategories sorted by order within the parent category?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;gt; here is the wish:&amp;nbsp;&lt;/SPAN&gt;&lt;A class="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa" href="https://community.jmp.com/t5/JMP-Wish-List/options-for-quot-order-by-quot-in-Graph-Builder/m-p/905444#U905444" target="_blank"&gt;options for "order by" in Graph Builder&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 05 Oct 2025 14:53:59 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-10-05T14:53:59Z</dc:date>
    <item>
      <title>Graph Builder - Order by</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906033#M106442</link>
      <description>&lt;P&gt;changed behavior in JM19:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/New-in-Graph-Builder-for-JMP-19/bc-p/904473/highlight/true#M1127" target="_blank"&gt;https://community.jmp.com/t5/JMPer-Cable/New-in-Graph-Builder-for-JMP-19/bc-p/904473/highlight/true#M1127&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;It's great that new functions are being added. But, JMP team, please (!!!) keep the old functionality as the default setting!&lt;BR /&gt;Otherwise, users will have to change hundreds of scripts!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We wondered about the new behavior:&amp;nbsp;&lt;BR /&gt;&lt;EM&gt;it always worked.&amp;nbsp; And "today" -- why are the main groups split into small chunks ?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1759079485333.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83777iF3DB3767AC086AEA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1759079485333.png" alt="hogi_0-1759079485333.png" /&gt;&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/53353"&gt;@shannon-c-b&lt;/a&gt;&amp;nbsp;, thanks for pointing to the root cause of the "bug":&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;As a workaround, one can create an auxiliary column to simulate the default (JMP ?-18) functionality of&amp;nbsp;&amp;nbsp;&lt;FONT face="courier new,courier"&gt;order by () &lt;/FONT&gt;with JMP19:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1759078765052.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83773i6F24AE323E568B5D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1759078765052.png" alt="hogi_0-1759078765052.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;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "myOrderBy",
	Formula( Col Mean( :height, :age ) * 10000000 + :height ),
) &amp;lt;&amp;lt; run formuals();

Graph Builder(

	Variables(
		X( :age, Order By( :myOrderBy, Ascending, Order Statistic( "Mean" ) ) ),
		X(
			:age_name,
			Position( 1 ),
			Order By( :myOrderBy, Ascending, Order Statistic( "Mean" ) )
		),
		Y( :height )
	),
	Elements( Bar( X( 1 ), X( 2 ), Y ) )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Oct 2025 14:49:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906033#M106442</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-05T14:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder - Order by</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906043#M106443</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/53353"&gt;@shannon-c-b&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;important: my workaround is not an exact 1:1 copy of the JMP18 style.&lt;BR /&gt;[TS-00240917]&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;my workaround:&lt;BR /&gt;- sorts the ages by mean(height)&lt;/P&gt;
&lt;P&gt;- sorts the students by height &lt;STRONG&gt;within the age groups&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;JMP &amp;lt; v19:&lt;/STRONG&gt;&lt;BR /&gt;- sorts the students by mean(height)&amp;nbsp; -&amp;gt; stores the order (*)&lt;BR /&gt;- sorts the ages by mean(height)&lt;BR /&gt;- places the students into the respective age groups - position by&amp;nbsp; (*)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as &lt;STRONG&gt;Robert&lt;/STRONG&gt; shows up twice, Robert is positioned by mean(height)&amp;nbsp;&lt;BR /&gt;-&amp;gt;&amp;nbsp;Please note the jumps around Robert #1 and Robert#2&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1759341276018.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84114i0E55F85DDDECBDCC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1759341276018.png" alt="hogi_0-1759341276018.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;my application case is for "students" with unique names, this is why I did not notice the difference.&lt;BR /&gt;&lt;BR /&gt;If your dataset contains "students" with duplicate names and the above workaround is not suitable for you (i.e. if you require the specialty (*) ), please contact JMP Support (referencing TS-00240917). They will be able to provide a workaround.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Oct 2025 14:52:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906043#M106443</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-05T14:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder - Order by</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906044#M106444</link>
      <description>&lt;P&gt;&lt;SPAN&gt;subcategories sorted by order within the parent category?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;gt; here is the wish:&amp;nbsp;&lt;/SPAN&gt;&lt;A class="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa" href="https://community.jmp.com/t5/JMP-Wish-List/options-for-quot-order-by-quot-in-Graph-Builder/m-p/905444#U905444" target="_blank"&gt;options for "order by" in Graph Builder&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Oct 2025 14:53:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Order-by/m-p/906044#M106444</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-05T14:53:59Z</dc:date>
    </item>
  </channel>
</rss>

