<?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: Analysis By/Page Ordering in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375988#M62586</link>
    <description>&lt;P&gt;the bottom-left one. but in my data - i have only 2 levels (0 or 1).&lt;BR /&gt;in any case- i've figure it out by getting partition script and append in into new window.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw=new window();
for(i,i&amp;lt;nrows(table),i++,
a=obj1[row i from order column ]&amp;lt;&amp;lt;get script;
nw&amp;lt;&amp;lt;append(a));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;thanks in any case!&lt;/P&gt;</description>
    <pubDate>Mon, 12 Apr 2021 15:14:33 GMT</pubDate>
    <dc:creator>YGerchman</dc:creator>
    <dc:date>2021-04-12T15:14:33Z</dc:date>
    <item>
      <title>Analysis By/Page Ordering</title>
      <link>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375839#M62574</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have a Partition analysis with "by" column. that means that I have a couple of "pages" (=plots).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj1=Partition(
Y( col1 ),
X( col2 ),
Show Split Prob( 1 ),
Informative Missing( 1 ),
By( col3));&lt;BR /&gt; part1=obj1&amp;lt;&amp;lt;report;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition, I would be glad if I could arrange them in an order (based on the second level probability).&lt;/P&gt;&lt;P&gt;so- I built 2nd table with order number of each table. it looks like this:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;part1[x]&amp;nbsp; &amp;nbsp; Probability&amp;nbsp; &amp;nbsp; &amp;nbsp;order&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.23&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.21&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.52&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.32&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;how could I show the plots in the order I want? (with or without the 2nd table)&lt;/P&gt;&lt;P&gt;note: If I will send to report or journal - the plots no longer will be interactive which is not good for the application at all.&lt;/P&gt;&lt;P&gt;thank you all,&lt;/P&gt;&lt;P&gt;Yoav.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 22:10:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375839#M62574</guid>
      <dc:creator>YGerchman</dc:creator>
      <dc:date>2023-06-09T22:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis By/Page Ordering</title>
      <link>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375902#M62581</link>
      <description>&lt;P&gt;I don't know of a way to do this interactively except to create a dashboard (maybe someone else does?), but you could make a fairly simple script to order them any way you like.&amp;nbsp; Add a local data filter to your platform and performing the analysis for a single level of your By element, and then copy/paste the script into a New Window script of your own:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

//open sample data
dt = Open("$Sample_data/big class.jmp");

//New window and V list box will create a window with each analysis below the previous one
win = New Window("Analysis",
	V List Box(
	
		//copy this script from the platform you used after adding a local data filter
		Bivariate(
			Y( :height ),
			X( :weight ),
			Local Data Filter(
				Close Outline( 1 ),
				Add Filter(
					columns( :age ),
					Where( :age == 14 ),
					Display( :age, N Items( 6 ) )
				)
			)
		),
		
		//then add the comma (previous line), and paste it again, changing the data filter
		Bivariate(
			Y( :height ),
			X( :weight ),
			Local Data Filter(
				Close Outline( 1 ),
				Add Filter(
					columns( :age ),
					Where( :age == 13 ),
					Display( :age, N Items( 6 ) )
				)
			)
		),
		Bivariate(
			Y( :height ),
			X( :weight ),
			Local Data Filter(
				Close Outline( 1 ),
				Add Filter(
					columns( :age ),
					Where( :age == 15 ),
					Display( :age, N Items( 6 ) )
				)
			)
		)
	)
);

//Now, if you want, you can hide all of the data filters:
(win &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey='Data Filter']")) &amp;lt;&amp;lt; Visibility("Hidden")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I did just submit a wish list request for one way to make this easier:&lt;LI-MESSAGE title="Respect value ordering in 'By' variable" uid="375907" url="https://community.jmp.com/t5/JMP-Wish-List/Respect-value-ordering-in-By-variable/m-p/375907#U375907" 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;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 12:27:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375902#M62581</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-04-12T12:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis By/Page Ordering</title>
      <link>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375980#M62585</link>
      <description>&lt;P&gt;Can you further specify what you mean by "&lt;SPAN&gt;(based on the second level probability)"?&amp;nbsp; Below is a simple run&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

//open sample data
dt = Open("$Sample_data/semiconductor capability.jmp");
obj1=Partition(
Y( :wafer ),
X( :pnp1 ),
Show Split Prob( 1 ),
Informative Missing( 1 ))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;and here is the output from the following JSL after having performed 1 split on the data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="split.PNG" style="width: 600px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/31989i3F49724E28EA0EF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="split.PNG" alt="split.PNG" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Which of the tables are you referring to when you ask for the "second level probability"?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 15:04:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375980#M62585</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-04-12T15:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis By/Page Ordering</title>
      <link>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375988#M62586</link>
      <description>&lt;P&gt;the bottom-left one. but in my data - i have only 2 levels (0 or 1).&lt;BR /&gt;in any case- i've figure it out by getting partition script and append in into new window.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw=new window();
for(i,i&amp;lt;nrows(table),i++,
a=obj1[row i from order column ]&amp;lt;&amp;lt;get script;
nw&amp;lt;&amp;lt;append(a));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;thanks in any case!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 15:14:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Analysis-By-Page-Ordering/m-p/375988#M62586</guid>
      <dc:creator>YGerchman</dc:creator>
      <dc:date>2021-04-12T15:14:33Z</dc:date>
    </item>
  </channel>
</rss>

