<?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: two graphs side by side in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339106#M58716</link>
    <description>&lt;P&gt;And if you just want 'point and click', you can get close by setting up the graphs the way you want 'by hand', then using 'Window &amp;gt; Combine Windows...':&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2020-12-03 at 11.41.54.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28722i73DDB72D43C5DC2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2020-12-03 at 11.41.54.png" alt="Screenshot 2020-12-03 at 11.41.54.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Dec 2020 11:46:26 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2020-12-03T11:46:26Z</dc:date>
    <item>
      <title>two graphs side by side</title>
      <link>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339053#M58710</link>
      <description>&lt;P&gt;Hi there are a few similar posts but I have not found exactly what i'm looking for.&lt;/P&gt;&lt;P&gt;I made alpha-diversity plots of two different indices and want to present them side by side (they are different scales)&amp;nbsp;&lt;/P&gt;&lt;P&gt;using two Y-axes e.g. right and left is confusing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I want to actually make two separate graphs and just display them side by side.&lt;/P&gt;&lt;P&gt;here is output from the phyloseq package in R.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ezorlo_0-1606986922115.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28716i5F82E8EA3901EA99/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ezorlo_0-1606986922115.png" alt="ezorlo_0-1606986922115.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the data as a table as well and want to recreate the plots in JMP. Any ideas?&lt;/P&gt;&lt;P&gt;Thanks,Ezra&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:08:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339053#M58710</guid>
      <dc:creator>ezorlo</dc:creator>
      <dc:date>2023-06-11T11:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: two graphs side by side</title>
      <link>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339104#M58715</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$sample_data/big class.jmp" );
New Window( "two graphs",
	V List Box(
		H List Box(
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 512, 442 ),
				Show Control Panel( 0 ),
				Show Legend( 0 ),
				Variables( X( :age ), Y( :height ) ),
				Elements( Points( X, Y, Legend( 5 ) ) ),
				SendToReport(
					Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "" ), Image Export Display( Normal )} ),
					Dispatch( {}, "X title", TextEditBox, {Set Text( "" )} ),
					Dispatch( {}, "Y title", TextEditBox, {Set Text( "" )} ),
					Dispatch( {}, "age", ScaleBox, {Label Row( {Major Grid Line Color( 2 ), Show Major Grid( 1 )} )} ),
					Dispatch( {}, "height", ScaleBox, {Label Row( {Major Grid Line Color( 2 ), Show Major Grid( 1 )} )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "Height" )} ),
					Dispatch( {}, "Graph Builder", FrameBox, {Background Color( 32 )} )
				)
			);
// identical but for height...weight in three places
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 512, 442 ),
				Show Control Panel( 0 ),
				Show Legend( 0 ),
				Variables( X( :age ), Y( :weight ) ),
				Elements( Points( X, Y, Legend( 5 ) ) ),
				SendToReport(
					Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "" ), Image Export Display( Normal )} ),
					Dispatch( {}, "X title", TextEditBox, {Set Text( "" )} ),
					Dispatch( {}, "Y title", TextEditBox, {Set Text( "" )} ),
					Dispatch( {}, "age", ScaleBox, {Label Row( {Major Grid Line Color( 2 ), Show Major Grid( 1 )} )} ),
					Dispatch( {}, "weight", ScaleBox, {Label Row( {Major Grid Line Color( 2 ), Show Major Grid( 1 )} )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "Weight" )} ),
					Dispatch( {}, "Graph Builder", FrameBox, {Background Color( 32 )} )
				)
			);
		),
		H Center Box( Text Box( "two graphs", &amp;lt;&amp;lt;setfontsize( 16 ), &amp;lt;&amp;lt;setfontstyle( "bold" ) ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28721i30A7ED758AC122A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Make the graphs interactively in graph builder, then save the script and make a new window around it.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 11:37:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339104#M58715</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-12-03T11:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: two graphs side by side</title>
      <link>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339106#M58716</link>
      <description>&lt;P&gt;And if you just want 'point and click', you can get close by setting up the graphs the way you want 'by hand', then using 'Window &amp;gt; Combine Windows...':&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2020-12-03 at 11.41.54.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28722i73DDB72D43C5DC2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2020-12-03 at 11.41.54.png" alt="Screenshot 2020-12-03 at 11.41.54.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 11:46:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/two-graphs-side-by-side/m-p/339106#M58716</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2020-12-03T11:46:26Z</dc:date>
    </item>
  </channel>
</rss>

