<?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: Exporting, Summarizing, Consolidating for External Reports in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613679#M81369</link>
    <description>&lt;P&gt;Welcome to the community. &amp;nbsp;I do not have a great answer for you, sorry. &amp;nbsp;What I typically do is to &lt;STRONG&gt;journal&lt;/STRONG&gt; outputs (graphs, tables, etc.) as they are created. &amp;nbsp;I do this for for all of the analysis for each data table. &amp;nbsp;Open journal once and each time you journal (Ctrl&amp;gt;J), the subsequent output is appended to the bottom of the open journal. &amp;nbsp;There are some changes you can make after the outputs are in the journal,. &amp;nbsp;Then I output the journal to Word and make additional modifications.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Mar 2023 14:29:18 GMT</pubDate>
    <dc:creator>statman</dc:creator>
    <dc:date>2023-03-17T14:29:18Z</dc:date>
    <item>
      <title>Exporting, Summarizing, Consolidating for External Reports</title>
      <link>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613313#M81342</link>
      <description>&lt;P&gt;I've just started using JMP, and I'm struggling with how to export the information I'm getting efficiently for external documents I need to create in MS Word.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand how to export results (File&amp;gt;Export), where I'm struggling is figuring out if there are ways to consolidate results, to avoid copy/paste or creating tables and things outside of JMP just to make it "look pretty".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I ran a distribution check of several data columns.&amp;nbsp; Is there a way to get all the histograms together in one area so I can make that a single picture/figure in my final document?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another example, as part of the distribution analysis, I ran Shapiro-Wilk tests, is there a way to export all of the results to a single table so that I can use that for my external document?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:27:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613313#M81342</guid>
      <dc:creator>BigMoney8</dc:creator>
      <dc:date>2023-06-08T16:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting, Summarizing, Consolidating for External Reports</title>
      <link>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613319#M81344</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/47123"&gt;@BigMoney8&lt;/a&gt;&amp;nbsp;Welcome to the JMP community!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this what you're looking for? The script below adds 3 table scripts to Big Class.jmp, so scroll down to the bottom of the table scripts list to see them and interact with them.&amp;nbsp; The first two are each separate distribution reports.&amp;nbsp; The last one creates a new window with both reports in them.&amp;nbsp; This script doesn't save anything though, so I encourage you to browse through the Scripting Index and see what syntax of Save, or other function, is correct for your needs.&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);

dt = open( "$SAMPLE_DATA/Big Class.jmp" );

dt &amp;lt;&amp;lt; New Script( "Distribution 1",
	
	Distribution(
	Nominal Distribution( Column( :age ) ),
	Nominal Distribution( Column( :sex ) )
	)
	
);

dt &amp;lt;&amp;lt; New Script( "Distribution 2",
	
	Distribution(
	Nominal Distribution( Column( :age ) ),
	Nominal Distribution( Column( :height ) ),
	Nominal Distribution( Column( :weight ) )
	)
	
);

// Makes a table script - run to see both distribution reports in one window!
dt &amp;lt;&amp;lt; New Script( "One window",
	
	New Window( "Combined reports",
		
		V list box( // Distribution 1 report
			
			Distribution(
			Nominal Distribution( Column( :age ) ),
			Nominal Distribution( Column( :sex ) )
			)			
		),
		
		V list box(  // Distribution 2 report
			
			Distribution(
			Nominal Distribution( Column( :age ) ),
			Nominal Distribution( Column( :height ) ),
			Nominal Distribution( Column( :weight ) )
			)			
		),
		
	)	
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Mar 2023 21:17:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613319#M81344</guid>
      <dc:creator>StarfruitBob</dc:creator>
      <dc:date>2023-03-16T21:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting, Summarizing, Consolidating for External Reports</title>
      <link>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613679#M81369</link>
      <description>&lt;P&gt;Welcome to the community. &amp;nbsp;I do not have a great answer for you, sorry. &amp;nbsp;What I typically do is to &lt;STRONG&gt;journal&lt;/STRONG&gt; outputs (graphs, tables, etc.) as they are created. &amp;nbsp;I do this for for all of the analysis for each data table. &amp;nbsp;Open journal once and each time you journal (Ctrl&amp;gt;J), the subsequent output is appended to the bottom of the open journal. &amp;nbsp;There are some changes you can make after the outputs are in the journal,. &amp;nbsp;Then I output the journal to Word and make additional modifications.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 14:29:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exporting-Summarizing-Consolidating-for-External-Reports/m-p/613679#M81369</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2023-03-17T14:29:18Z</dc:date>
    </item>
  </channel>
</rss>

