<?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: Instructions or resources for how to take multiple outputs (data tables and reports) from a script and combine them into a dashboard at the end of the script? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803579#M98056</link>
    <description>&lt;P&gt;And the easiest solution:&lt;BR /&gt;Use application builder.&lt;BR /&gt;&lt;BR /&gt;Create a new Dashboard and&lt;BR /&gt;Just drag the reports to the location you want them to be. Then save the dashboard as a jmpapp.&lt;BR /&gt;&lt;BR /&gt;The script can be shortened, just the data curating steps. As a last step in the code, open the saved jmpapp.&lt;BR /&gt;&lt;BR /&gt;The huge benefit: you can optimize the dashboard via the GUI - independent of the script.&lt;/P&gt;</description>
    <pubDate>Fri, 04 Oct 2024 09:05:58 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-10-04T09:05:58Z</dc:date>
    <item>
      <title>Instructions or resources for how to take multiple outputs (data tables and reports) from a script and combine them into a dashboard at the end of the script?</title>
      <link>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803537#M98047</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am fairly new to scripting in JSL. However, I have managed to create a script that creates some summary data tables and analysis output (reports I think) for the given data table I am running the script on. My issue is that all of the results are produced in their own window/data table/report. Is there a way to combine them into one nice dashboard or window at the end of my script so that it is the final and only thing produced? Eventually I would like to turn this into an add-in but have not made one before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any resources or suggestions on how to get started with this!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2024 21:10:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803537#M98047</guid>
      <dc:creator>Abby_Collins14</dc:creator>
      <dc:date>2024-10-03T21:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Instructions or resources for how to take multiple outputs (data tables and reports) from a script and combine them into a dashboard at the end of the script?</title>
      <link>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803547#M98048</link>
      <description>&lt;P&gt;Here are 3 ways to do this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

nw = New Window( "The Output",
	dis = dt &amp;lt;&amp;lt; Distribution(
		Stack( 1 ),
		Continuous Distribution(
			Column( :height ),
			Horizontal Layout( 1 ),
			Vertical( 0 ),
			Process Capability( 0 )
		),
		Continuous Distribution(
			Column( :weight ),
			Horizontal Layout( 1 ),
			Vertical( 0 ),
			Process Capability( 0 )
		)
	);
	biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Fit Line( {Line Color( {212, 73, 88} )} ) );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );


dis = dt &amp;lt;&amp;lt; Distribution(
	Stack( 1 ),
	Continuous Distribution(
		Column( :height ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Process Capability( 0 )
	),
	Continuous Distribution(
		Column( :weight ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Process Capability( 0 )
	)
);
biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Fit Line( {Line Color( {212, 73, 88} )} ) );

nw = New Window( "The Output" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );


dis = dt &amp;lt;&amp;lt; Distribution(
	Stack( 1 ),
	Continuous Distribution(
		Column( :height ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Process Capability( 0 )
	),
	Continuous Distribution(
		Column( :weight ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Process Capability( 0 )
	)
);
biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Fit Line( {Line Color( {212, 73, 88} )} ) );

report(dis) &amp;lt;&amp;lt; journal;
report(biv) &amp;lt;&amp;lt; journal;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Oct 2024 21:50:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803547#M98048</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-10-03T21:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Instructions or resources for how to take multiple outputs (data tables and reports) from a script and combine them into a dashboard at the end of the script?</title>
      <link>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803551#M98051</link>
      <description>&lt;P&gt;Scripting Guide does have ok documentation for beginner scripters. If you have time it is worth reading through it, if not just trying to find interesting topics should also work. For example adding different report windows to single new window&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/18.0/index.shtml#page/jmp/construct-display-boxes-that-contain-platforms.shtml#" target="_blank"&gt;Construct Display Boxes That Contain Platforms (jmp.com)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 04:12:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803551#M98051</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-10-04T04:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Instructions or resources for how to take multiple outputs (data tables and reports) from a script and combine them into a dashboard at the end of the script?</title>
      <link>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803579#M98056</link>
      <description>&lt;P&gt;And the easiest solution:&lt;BR /&gt;Use application builder.&lt;BR /&gt;&lt;BR /&gt;Create a new Dashboard and&lt;BR /&gt;Just drag the reports to the location you want them to be. Then save the dashboard as a jmpapp.&lt;BR /&gt;&lt;BR /&gt;The script can be shortened, just the data curating steps. As a last step in the code, open the saved jmpapp.&lt;BR /&gt;&lt;BR /&gt;The huge benefit: you can optimize the dashboard via the GUI - independent of the script.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 09:05:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Instructions-or-resources-for-how-to-take-multiple-outputs-data/m-p/803579#M98056</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-10-04T09:05:58Z</dc:date>
    </item>
  </channel>
</rss>

