<?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: JSL command to call &amp;quot;Value Order&amp;quot; window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643715#M84051</link>
    <description>&lt;P&gt;Thank you for your suggestion. I would like to have interative window for flexible input data. It could be change by time.&lt;/P&gt;&lt;P&gt;Currently I'm using your suggestion script but I'm finding more flexible way like call interactive window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2023 00:36:07 GMT</pubDate>
    <dc:creator>AvgLizard122</dc:creator>
    <dc:date>2023-06-19T00:36:07Z</dc:date>
    <item>
      <title>JSL command to call "Value Order" window</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643279#M83991</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm writing a JSL script but I would like to call "Value Order" window so that I can sort the data by that window.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In the Scripting Index I found "axisbox &amp;lt;&amp;lt; Edit Value Order();" and "Value Order" appears. But after I apply to my script it does not appear the "Value Order" window.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Syntex: obj &amp;lt;&amp;lt; Edit Value Order&lt;BR /&gt;My script I refer obj as a Table:ColumnName? Is it do-able?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 09:57:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643279#M83991</guid>
      <dc:creator>AvgLizard122</dc:creator>
      <dc:date>2023-06-16T09:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: JSL command to call "Value Order" window</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643355#M83997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/48355"&gt;@AvgLizard122&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Do you have to have the interactive window to set the value ordering? If you know what the value ordering should be, you can always set it with JSL, like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:ColumnName&amp;lt;&amp;lt;Set Property("Value Ordering", {"item1", "item2", "item3"});&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; With the example in the Scripting Index, it appears that you have to first generate an analysis (e.g. the Oneway() ), then send it to a report, then call the axis box that contains the categorical axis and call the Edit Value Order() function. Why you can't do this to the column directly, I'm not sure, but it won't work. JSL will return that it's Scriptable[ ], but then nothing happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 13:03:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643355#M83997</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2023-06-16T13:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: JSL command to call "Value Order" window</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643618#M84037</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/48355"&gt;@AvgLizard122&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;this is not exactly answering you question but may be useful in this context.&lt;/P&gt;
&lt;P&gt;if you want to order values in a systematic way see if this helps:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
dt = Open( "/C:/Program Files/SAS/JMP/17/Samples/Data/Cars.jmp" );

// make summary table for ranking Make by Wt
dtsummary = dt &amp;lt;&amp;lt; Summary( Group( :Make ), Mean( :Wt ), Freq( "None" ), Weight( "None" ));

// order the countries by frequency
dtsummary &amp;lt;&amp;lt; Sort( By( :"Mean(Wt)"n ), Replace Table, Order( Descending ) );
order = dtsummary:Make &amp;lt;&amp;lt; get as matrix;
dt:Make &amp;lt;&amp;lt; set property( "value ordering", Eval( order ) );
close (dtsummary, no save);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;this approach has the flexibility of producing value orders by any other variable of just the frequency of the categories.&lt;/P&gt;
&lt;P&gt;let us know if this hepls.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 10:54:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643618#M84037</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2023-06-17T10:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: JSL command to call "Value Order" window</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643715#M84051</link>
      <description>&lt;P&gt;Thank you for your suggestion. I would like to have interative window for flexible input data. It could be change by time.&lt;/P&gt;&lt;P&gt;Currently I'm using your suggestion script but I'm finding more flexible way like call interactive window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 00:36:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643715#M84051</guid>
      <dc:creator>AvgLizard122</dc:creator>
      <dc:date>2023-06-19T00:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: JSL command to call "Value Order" window</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643716#M84052</link>
      <description>&lt;P&gt;Thank you for your suggestion.&lt;/P&gt;&lt;P&gt;My data is not in systematic. It is in manual depends on each product. So, I cannot use&amp;nbsp;numberics (sort from min to max) or sort by letter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 02:04:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-command-to-call-quot-Value-Order-quot-window/m-p/643716#M84052</guid>
      <dc:creator>AvgLizard122</dc:creator>
      <dc:date>2023-06-19T02:04:26Z</dc:date>
    </item>
  </channel>
</rss>

