<?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: Creating a report makes my fit groups non-interactive in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Creating-a-report-makes-my-fit-groups-non-interactive/m-p/734557#M91546</link>
    <description>&lt;P&gt;A platform report can only exist in one window - any report that already has a window will be copied at the time that you do the &amp;lt;&amp;lt;Append.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to handle this is to launch your platforms without an initial window, using the Platform() command, which launches the Platform within a display box, without ever creating a window.&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");
ow = Platform(dt, Oneway( Y( :height ), X( :sex ), Means( 1 ), Mean Diamonds( 1 ) ));
New Window("final report",
	Tab Page Box("Oneway report",
		ow
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 13 Mar 2024 16:42:31 GMT</pubDate>
    <dc:creator>danschikore</dc:creator>
    <dc:date>2024-03-13T16:42:31Z</dc:date>
    <item>
      <title>Creating a report makes my fit groups non-interactive</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-report-makes-my-fit-groups-non-interactive/m-p/734519#M91544</link>
      <description>&lt;P&gt;Good morning/afternoon/evening everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having this strange issue where when I report a fit group I made to a tabbed report it makes the plots non-interactive (red triangle not doing the usual stuff). Screen shot here shows what happens when I click on the red triangle.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OhThatArabGuy_0-1710346705606.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/62169i77C039065BC53F85/image-size/medium?v=v2&amp;amp;px=400" role="button" title="OhThatArabGuy_0-1710346705606.png" alt="OhThatArabGuy_0-1710346705606.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is where I make the tabbed report:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;////////////////////////Show graphs for each test//////////////////
			Tests = db_Tests:Test &amp;lt;&amp;lt; Get Values;
			Testset = Associative Array( Tests );//get unique set of fail names
			Tests = Testset &amp;lt;&amp;lt; Get Keys;
			Try( Remove From( Tests, As List( Loc( Tests, "WAIT" ) ) ) );
			Try( Remove From( Tests, As List( Loc( Tests, "RAMP" ) ) ) );
			Try( Remove From( Tests, As List( Loc( Tests, "-CALC" ) ) ) );
	
	//run through each test type, make category tab for each
			For( i = 1, i &amp;lt;= N Items( Tests ), i++,
				Report &amp;lt;&amp;lt; Append( Tests[i], TestCategory = Tab Box() );
		/////////loop through all test of that name and make charts
				db_Tests &amp;lt;&amp;lt; Select Where( :Test == Tests[i] );
				TestNums = db_Tests:TestNum[(db_Tests &amp;lt;&amp;lt; get selected rows)];
				TestNumsSet = Associative Array( TestNums );//get unique set of fail names
				TestNums = TestNumsSet &amp;lt;&amp;lt; Get Keys;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is the portion of my script that generates the fit groups:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;ow = probeSummary &amp;lt;&amp;lt; Fit Group(
							Oneway(
								Y( :("Median" || " " || TestNums[j] || " " || Tests[i]) ),
								X( probeSummary:analysisCol ),
								Quantiles( 1 ),
								Means( 1 ),
								Means and Std Dev( 1 ),
								t Test( 1 ),
								Box Plots( 1 ),
								Mean Diamonds( 1 ),
								Mean Error Bars( 1 ),
								Std Dev Lines( 1 ),
								X Axis Proportional( 0 ),
								Points Jittered( 1 ),
								Grand Mean( 0 ),
								SendToReport(
									Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
									Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
								)
							),
							Oneway(
								Y( :("Interquartile Range" || " " || TestNums[j] || " " || Tests[i]) ),
								X( probeSummary:analysisCol ),
								Quantiles( 1 ),
								Means( 1 ),
								Means and Std Dev( 1 ),
								t Test( 1 ),
								Box Plots( 1 ),
								Mean Diamonds( 1 ),
								Mean Error Bars( 1 ),
								Std Dev Lines( 1 ),
								X Axis Proportional( 0 ),
								Points Jittered( 1 ),
								Grand Mean( 0 ),
								SendToReport(
									Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
									Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
								)
							),
							&amp;lt;&amp;lt;{Arrange in Rows( 2 )}
						)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And lastly here is the portion that creates the report:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;owrep = ow &amp;lt;&amp;lt; Report;
					title = TestName;
					owrep &amp;lt;&amp;lt; Set Title( title );
					TestCategory &amp;lt;&amp;lt; Append( title, ow &amp;lt;&amp;lt; Report );
					ow &amp;lt;&amp;lt; close window();&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any help would be greatly appreciated as I'm very stuck right now. Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 16:23:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-report-makes-my-fit-groups-non-interactive/m-p/734519#M91544</guid>
      <dc:creator>OhThatArabGuy</dc:creator>
      <dc:date>2024-03-13T16:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a report makes my fit groups non-interactive</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-report-makes-my-fit-groups-non-interactive/m-p/734557#M91546</link>
      <description>&lt;P&gt;A platform report can only exist in one window - any report that already has a window will be copied at the time that you do the &amp;lt;&amp;lt;Append.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to handle this is to launch your platforms without an initial window, using the Platform() command, which launches the Platform within a display box, without ever creating a window.&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");
ow = Platform(dt, Oneway( Y( :height ), X( :sex ), Means( 1 ), Mean Diamonds( 1 ) ));
New Window("final report",
	Tab Page Box("Oneway report",
		ow
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Mar 2024 16:42:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-report-makes-my-fit-groups-non-interactive/m-p/734557#M91546</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2024-03-13T16:42:31Z</dc:date>
    </item>
  </channel>
</rss>

