<?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: Combine bivariate plots from different table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Combine-bivariate-plots-from-different-table/m-p/400843#M65199</link>
    <description>&lt;P&gt;This can be done easily both interactively and using JSL&lt;/P&gt;
&lt;P&gt;Interactive&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Perform the key stroke,&amp;nbsp; &amp;nbsp; &amp;nbsp; Shift/CNTL/J&amp;nbsp; to open a new journal&lt;/LI&gt;
&lt;LI&gt;Right Click in the journal and select&amp;nbsp; &amp;nbsp; &amp;nbsp;Add Outline Item
&lt;OL&gt;
&lt;LI&gt;Enter the name Fit Group.........or give it whatever name you want&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Open data table Big Class from&amp;nbsp; &amp;nbsp; Help=&amp;gt;Sample Data Library&lt;/LI&gt;
&lt;LI&gt;Open the Fit Y by X Platform&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Analyze=&amp;gt;Fit Y by X
&lt;OL&gt;
&lt;LI&gt;Select Height as the Y Response column&lt;/LI&gt;
&lt;LI&gt;Select Weight as the X Factor column&lt;/LI&gt;
&lt;LI&gt;Click OK&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to the output display from the Fit Y by X&amp;nbsp; &amp;nbsp; &amp;nbsp;l&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Choose the Selection tool (the thick +) from the tool bar, or alternatively just press the S key.&lt;/LI&gt;
&lt;LI&gt;Drag it to the journal window, and position it under ne Fit Group outline box&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1626258126734.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34139i653177916A6984C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1626258126734.png" alt="txnelson_0-1626258126734.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;It will now be an element of the Fit Group outline box&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1626258214901.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34140iC1957D05C00FCBB5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1626258214901.png" alt="txnelson_1-1626258214901.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;To add the output from a different data table, open the Blood Pressure data table from&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Help=&amp;gt;Sample Data Library&lt;/LI&gt;
&lt;LI&gt;Open the Fit Y by X Platform&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Analyze=&amp;gt;Fit Y by X
&lt;OL&gt;
&lt;LI&gt;Select BP 8M as the Y Response column&lt;/LI&gt;
&lt;LI&gt;Select BP 12M as the X Factor column&lt;/LI&gt;
&lt;LI&gt;Click OK&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to the Blood Pressure output display from the Fit Y by X&amp;nbsp;
&lt;OL&gt;
&lt;LI&gt;Choose the Selection tool (the thick +) from the tool bar, or alternatively just press the S key.&lt;/LI&gt;
&lt;LI&gt;Drag the display to the Journal window and place it under the output from the previous Fit Y by X&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_2-1626258707895.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34141i3D1B9334F3440428/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_2-1626258707895.png" alt="txnelson_2-1626258707895.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The combined journal has been created&lt;/P&gt;
&lt;P&gt;Below is a script that creates a similar output&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here( 1 );

// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );

// Open Data Table: Blood Pressure.jmp
// → Data Table( "Blood Pressure" )
Open( "$SAMPLE_DATA/Blood Pressure.jmp" );

// Create a journal window
New Window( "My Fit Group",
	&amp;lt;&amp;lt;journal,
	Outline Box( "Fit Group", 

		// Launch platform: Bivariate
		data table("big class") &amp;lt;&amp;lt; Bivariate( Y( :height ), X( :weight ) ), 

		// Launch platform: Bivariate
		data table("Blood Pressure") &amp;lt;&amp;lt; Bivariate( Y( :BP 8M ), X( :BP 12M ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The primary difference between the two combined windows, is that the way the script has been written, the Fit Y by X outputs are the primary output displays, which means they can have additional options selected, where in the cut and paste interactive version, the output displays are just copies of the display output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jul 2021 10:37:39 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2021-07-14T10:37:39Z</dc:date>
    <item>
      <title>Combine bivariate plots from different table</title>
      <link>https://community.jmp.com/t5/Discussions/Combine-bivariate-plots-from-different-table/m-p/400796#M65194</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I wanted to combine two bivariate plots, from two different data table, &lt;STRONG&gt;on a journal&lt;/STRONG&gt; and not on combine windows tab. Is it possible to have a format similar to fit group, but the plots will come from two different data table? please help&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:16:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combine-bivariate-plots-from-different-table/m-p/400796#M65194</guid>
      <dc:creator>29755</dc:creator>
      <dc:date>2023-06-11T11:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Combine bivariate plots from different table</title>
      <link>https://community.jmp.com/t5/Discussions/Combine-bivariate-plots-from-different-table/m-p/400843#M65199</link>
      <description>&lt;P&gt;This can be done easily both interactively and using JSL&lt;/P&gt;
&lt;P&gt;Interactive&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Perform the key stroke,&amp;nbsp; &amp;nbsp; &amp;nbsp; Shift/CNTL/J&amp;nbsp; to open a new journal&lt;/LI&gt;
&lt;LI&gt;Right Click in the journal and select&amp;nbsp; &amp;nbsp; &amp;nbsp;Add Outline Item
&lt;OL&gt;
&lt;LI&gt;Enter the name Fit Group.........or give it whatever name you want&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Open data table Big Class from&amp;nbsp; &amp;nbsp; Help=&amp;gt;Sample Data Library&lt;/LI&gt;
&lt;LI&gt;Open the Fit Y by X Platform&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Analyze=&amp;gt;Fit Y by X
&lt;OL&gt;
&lt;LI&gt;Select Height as the Y Response column&lt;/LI&gt;
&lt;LI&gt;Select Weight as the X Factor column&lt;/LI&gt;
&lt;LI&gt;Click OK&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to the output display from the Fit Y by X&amp;nbsp; &amp;nbsp; &amp;nbsp;l&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Choose the Selection tool (the thick +) from the tool bar, or alternatively just press the S key.&lt;/LI&gt;
&lt;LI&gt;Drag it to the journal window, and position it under ne Fit Group outline box&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1626258126734.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34139i653177916A6984C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1626258126734.png" alt="txnelson_0-1626258126734.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;It will now be an element of the Fit Group outline box&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1626258214901.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34140iC1957D05C00FCBB5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1626258214901.png" alt="txnelson_1-1626258214901.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;To add the output from a different data table, open the Blood Pressure data table from&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Help=&amp;gt;Sample Data Library&lt;/LI&gt;
&lt;LI&gt;Open the Fit Y by X Platform&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Analyze=&amp;gt;Fit Y by X
&lt;OL&gt;
&lt;LI&gt;Select BP 8M as the Y Response column&lt;/LI&gt;
&lt;LI&gt;Select BP 12M as the X Factor column&lt;/LI&gt;
&lt;LI&gt;Click OK&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to the Blood Pressure output display from the Fit Y by X&amp;nbsp;
&lt;OL&gt;
&lt;LI&gt;Choose the Selection tool (the thick +) from the tool bar, or alternatively just press the S key.&lt;/LI&gt;
&lt;LI&gt;Drag the display to the Journal window and place it under the output from the previous Fit Y by X&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_2-1626258707895.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34141i3D1B9334F3440428/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_2-1626258707895.png" alt="txnelson_2-1626258707895.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;The combined journal has been created&lt;/P&gt;
&lt;P&gt;Below is a script that creates a similar output&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here( 1 );

// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );

// Open Data Table: Blood Pressure.jmp
// → Data Table( "Blood Pressure" )
Open( "$SAMPLE_DATA/Blood Pressure.jmp" );

// Create a journal window
New Window( "My Fit Group",
	&amp;lt;&amp;lt;journal,
	Outline Box( "Fit Group", 

		// Launch platform: Bivariate
		data table("big class") &amp;lt;&amp;lt; Bivariate( Y( :height ), X( :weight ) ), 

		// Launch platform: Bivariate
		data table("Blood Pressure") &amp;lt;&amp;lt; Bivariate( Y( :BP 8M ), X( :BP 12M ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The primary difference between the two combined windows, is that the way the script has been written, the Fit Y by X outputs are the primary output displays, which means they can have additional options selected, where in the cut and paste interactive version, the output displays are just copies of the display output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 10:37:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combine-bivariate-plots-from-different-table/m-p/400843#M65199</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-07-14T10:37:39Z</dc:date>
    </item>
  </channel>
</rss>

