<?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: Tree Structure with group platform in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911281#M107064</link>
    <description>&lt;P&gt;You can also avoid having the list of objects by using Group Options(Return Group(1)) which can sometimes be useful&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = dt &amp;lt;&amp;lt; Bivariate(
	X(:height), 
	Y(:weight), 
	By(:age), 
	Group Options(Return Group(1))
);
// show(obj); // Group Platform[]
obj &amp;lt;&amp;lt; Layout("Arrange in Tabs");
Report(obj)[TabListBox(1)] &amp;lt;&amp;lt; Set Style("Combo");&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 04 Nov 2025 18:42:17 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-11-04T18:42:17Z</dc:date>
    <item>
      <title>Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911200#M107046</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I cannot seem to access items in the tree structure of a platform whenever I specify a variable in the By argument. Is there something with the "Group Platform" property I must reference first?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I want to do is change the style of the tablist to a combo box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 13:47:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911200#M107046</guid>
      <dc:creator>rcast15</dc:creator>
      <dc:date>2025-11-04T13:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911228#M107049</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/64615"&gt;@rcast15&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I'm not quite sure what it is that you're after. Can you provide some more details so that it's easier to understand the dilemma you're having. Is this a JSL problem? Which specific platform or analysis are you using? Do you have a script or data table you can share, or screenshots to share that can help to explain things?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!,&lt;/P&gt;
&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 15:03:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911228#M107049</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2025-11-04T15:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911231#M107050</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );

obj = dt &amp;lt;&amp;lt; Multivariate(
	Y( :x, :y ),
	Variance Estimation( "Row-wise" ),
	Scatterplot Matrix( 1 ),
	By( :Drug ),
	Group Options( Layout( "Arrange in Tabs" ) )
);

report = Report(obj);

report[TabListBox(1)] &amp;lt;&amp;lt; set style("combo");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is an example of what I am trying to do. I want to script the style of the tab box to combo but I am getting an error. I expect it has to do with the tree structure I am referencing&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 15:10:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911231#M107050</guid>
      <dc:creator>rcast15</dc:creator>
      <dc:date>2025-11-04T15:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911240#M107053</link>
      <description>&lt;P&gt;Since there are multiple multivariate plots, obj is a list.&amp;nbsp; I had success going this route:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );

obj = dt &amp;lt;&amp;lt; Multivariate(
	Y( :x, :y ),
	Variance Estimation( "Row-wise" ),
	Scatterplot Matrix( 1 ),
	By( :Drug ),
	Group Options( Layout( "Arrange in Tabs" ) )
);
(Get Window( obj[1] ) &amp;lt;&amp;lt; XPath( "//TabListBox" ))[1] &amp;lt;&amp;lt; Set Style( "Combo" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 15:33:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911240#M107053</guid>
      <dc:creator>mmarchandFSLR</dc:creator>
      <dc:date>2025-11-04T15:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911279#M107062</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/58003"&gt;@mmarchandFSLR&lt;/a&gt;. The code works well, however when I try to append the output anywhere in a new window I get an error message. I want to put the output in a V or H list box inside of a new window I am creating. Any thoughts?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );

// THIS WORKS
obj = dt &amp;lt;&amp;lt; Multivariate(
	Y( :x, :y ),
	Variance Estimation( "Row-wise" ),
	Scatterplot Matrix( 1 ),
	By( :Drug ),
	Group Options( Layout( "Arrange in Tabs" ) )
);
(Get Window( obj[1] ) &amp;lt;&amp;lt; XPath( "//TabListBox" ))[1] &amp;lt;&amp;lt; Set Style( "Combo" );


// DOES NOT WORK
obj_expr = Expr(
	obj = dt &amp;lt;&amp;lt; Multivariate(
		Y( :x, :y ),
		Variance Estimation( "Row-wise" ),
		Scatterplot Matrix( 1 ),
		By( :Drug ),
		Group Options( Layout( "Arrange in Tabs" ) )
	);
	(Get Window( obj[1] ) &amp;lt;&amp;lt; XPath( "//TabListBox" ))[1] &amp;lt;&amp;lt; Set Style( "Combo" );
);

New Window( "Example", OB_1 = Outline Box( "Analysis", obj_expr ) );
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 18:37:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911279#M107062</guid>
      <dc:creator>rcast15</dc:creator>
      <dc:date>2025-11-04T18:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911281#M107064</link>
      <description>&lt;P&gt;You can also avoid having the list of objects by using Group Options(Return Group(1)) which can sometimes be useful&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = dt &amp;lt;&amp;lt; Bivariate(
	X(:height), 
	Y(:weight), 
	By(:age), 
	Group Options(Return Group(1))
);
// show(obj); // Group Platform[]
obj &amp;lt;&amp;lt; Layout("Arrange in Tabs");
Report(obj)[TabListBox(1)] &amp;lt;&amp;lt; Set Style("Combo");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 18:42:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911281#M107064</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-04T18:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911282#M107065</link>
      <description>&lt;P&gt;Oh awesome Jarmo! I did not know the return group was even an option. Thanks&lt;/P&gt;
&lt;P&gt;-Robert&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 18:47:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911282#M107065</guid>
      <dc:creator>rcast15</dc:creator>
      <dc:date>2025-11-04T18:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Structure with group platform</title>
      <link>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911283#M107066</link>
      <description>&lt;P&gt;Also, to with your Expr() approach, something like this should work&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Drug.jmp");

obj_expr = Expr(
	obj = dt &amp;lt;&amp;lt; Multivariate(
		Y(:x, :y),
		Variance Estimation("Row-wise"),
		Scatterplot Matrix(1),
		By(:Drug),
		Group Options(Return Group(1), Layout("Arrange in Tabs"))
	);
	Report(obj)[TabListBox(1)] &amp;lt;&amp;lt; Set Style("Combo");
);

nw = New Window("Example", OB_1 = Outline Box("Analysis", obj_expr));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you could also consider something like&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Drug.jmp");

obj_expr = Expr(
	obj = dt &amp;lt;&amp;lt; Multivariate(
		Y(:x, :y),
		Variance Estimation("Row-wise"),
		Scatterplot Matrix(1),
		By(:Drug),
		Group Options(Return Group(1), Layout("Arrange in Tabs"))
	);
	
);

nw = New Window("Example", 
	OB_1 = Outline Box("Analysis", 
		multivar = obj_expr
	)
);
Report(multivar)[TabListBox(1)] &amp;lt;&amp;lt; Set Style("Combo");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 18:50:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tree-Structure-with-group-platform/m-p/911283#M107066</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-04T18:50:28Z</dc:date>
    </item>
  </channel>
</rss>

