<?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 How to rearrange tables/results in JMP distribution and ultimately create an application in JSL? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-rearrange-tables-results-in-JMP-distribution-and/m-p/35405#M20895</link>
    <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;Suppose, I have two data sets. I am using standard example Sample library&amp;gt;&amp;gt; Big Class.jmp.&lt;/P&gt;&lt;P&gt;Data set 1: All the 40 students&amp;nbsp;of a class.&lt;/P&gt;&lt;P&gt;Data set 2: Subset of just&amp;nbsp;female students of the the class.&lt;/P&gt;&lt;P&gt;Need: I would like to compare distribution of [age,sex,height,weight] for Dataset 1 and 2.&lt;/P&gt;&lt;P&gt;For this I open both the reports, combine these reports using JMP&amp;gt;file&amp;gt;&amp;nbsp;application. When I combine applications the distribution of age,sex,height,weight are in single window.&lt;/P&gt;&lt;P&gt;But I want in a form&amp;nbsp;age(data set1) and age(data set 2)&amp;nbsp;side by side and in same scale. then height(data set1) and height(data set 2)&amp;nbsp;side by side and in same scale and so on for all other parameters in a single window.&lt;/P&gt;&lt;P&gt;My actual data sets are quiet large and it would be quiet useful when a parameter of data set1 and data set2 are side by side for easier comparison.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Feb 2017 11:40:53 GMT</pubDate>
    <dc:creator>sanqub</dc:creator>
    <dc:date>2017-02-07T11:40:53Z</dc:date>
    <item>
      <title>How to rearrange tables/results in JMP distribution and ultimately create an application in JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rearrange-tables-results-in-JMP-distribution-and/m-p/35405#M20895</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;Suppose, I have two data sets. I am using standard example Sample library&amp;gt;&amp;gt; Big Class.jmp.&lt;/P&gt;&lt;P&gt;Data set 1: All the 40 students&amp;nbsp;of a class.&lt;/P&gt;&lt;P&gt;Data set 2: Subset of just&amp;nbsp;female students of the the class.&lt;/P&gt;&lt;P&gt;Need: I would like to compare distribution of [age,sex,height,weight] for Dataset 1 and 2.&lt;/P&gt;&lt;P&gt;For this I open both the reports, combine these reports using JMP&amp;gt;file&amp;gt;&amp;nbsp;application. When I combine applications the distribution of age,sex,height,weight are in single window.&lt;/P&gt;&lt;P&gt;But I want in a form&amp;nbsp;age(data set1) and age(data set 2)&amp;nbsp;side by side and in same scale. then height(data set1) and height(data set 2)&amp;nbsp;side by side and in same scale and so on for all other parameters in a single window.&lt;/P&gt;&lt;P&gt;My actual data sets are quiet large and it would be quiet useful when a parameter of data set1 and data set2 are side by side for easier comparison.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 11:40:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rearrange-tables-results-in-JMP-distribution-and/m-p/35405#M20895</guid>
      <dc:creator>sanqub</dc:creator>
      <dc:date>2017-02-07T11:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to rearrange tables/results in JMP distribution and ultimately create an application in JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rearrange-tables-results-in-JMP-distribution-and/m-p/35427#M20898</link>
      <description>&lt;P&gt;Perhaps you have a specific reason to want to use 'Distribution'. But you could also consider stacking your two tables and using 'Fit Y By X'. The code below shows the idea:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; Fit Group(
			Oneway(
				Y( :height ),
				X( :sex ),
				Histograms( 1 ),
				SendToReport(
					Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 174, 240 )} )
				)
			),
			Oneway(
				Y( :weight ),
				X( :sex ),
				Histograms( 1 ),
				SendToReport(
					Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 148, 240 )} )
				)
			),
			&amp;lt;&amp;lt;{Arrange in Rows( 2 )}
		);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which gives:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-02-07 at 15.30.59.png" style="width: 731px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/5035i4FFB38EEA7B5913A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-02-07 at 15.30.59.png" alt="Screen Shot 2017-02-07 at 15.30.59.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 15:31:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rearrange-tables-results-in-JMP-distribution-and/m-p/35427#M20898</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-02-07T15:31:46Z</dc:date>
    </item>
  </channel>
</rss>

