<?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 Having multiple graphs in one window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/714570#M89799</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a question on multiple graphs in one window (not in graph builder).&lt;/P&gt;&lt;P&gt;I'd like to have multiple line graphs having each x- and y-axis (like below figure - actually 3 columns&amp;amp;4 rows) - Actually this type of graphs can be generated using 'Fit Y by X' mode. However, it cannot draw lines like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="parkmintae72_1-1704907484233.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60251i51FB09710F9B3160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="parkmintae72_1-1704907484233.png" alt="parkmintae72_1-1704907484233.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I remember that "V List Box" or "H List Box" option in scripts could do this. However, I can't recall it fully and even I couldn't find any information about that from googling.&lt;/P&gt;&lt;P&gt;Can I do this in the 'Graph Builder' mode?&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jan 2024 17:29:19 GMT</pubDate>
    <dc:creator>parkmintae72</dc:creator>
    <dc:date>2024-01-10T17:29:19Z</dc:date>
    <item>
      <title>Having multiple graphs in one window</title>
      <link>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/714570#M89799</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a question on multiple graphs in one window (not in graph builder).&lt;/P&gt;&lt;P&gt;I'd like to have multiple line graphs having each x- and y-axis (like below figure - actually 3 columns&amp;amp;4 rows) - Actually this type of graphs can be generated using 'Fit Y by X' mode. However, it cannot draw lines like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="parkmintae72_1-1704907484233.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60251i51FB09710F9B3160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="parkmintae72_1-1704907484233.png" alt="parkmintae72_1-1704907484233.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I remember that "V List Box" or "H List Box" option in scripts could do this. However, I can't recall it fully and even I couldn't find any information about that from googling.&lt;/P&gt;&lt;P&gt;Can I do this in the 'Graph Builder' mode?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 17:29:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/714570#M89799</guid>
      <dc:creator>parkmintae72</dc:creator>
      <dc:date>2024-01-10T17:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple graphs in one window</title>
      <link>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/714575#M89800</link>
      <description>&lt;P&gt;Using &lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/differences-between-new-window-and-the-deprecated-dialog.shtml#ww741685" target="_self"&gt;Lineup Box&lt;/A&gt; with N Col(2) is most likely easier for something like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = open("$SAMPLE_DATA/Big Class.jmp");


new window("",
	Lineup Box(N Col(2),
		dt &amp;lt;&amp;lt; Graph Builder(
			Variables(X(:weight), Y(:height), Overlay(:sex)),
			Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11)))
		),
		dt &amp;lt;&amp;lt; Graph Builder(
			Variables(X(:weight), Y(:height), Overlay(:sex)),
			Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11)))
		),
		dt &amp;lt;&amp;lt; Graph Builder(
			Variables(X(:weight), Y(:height), Overlay(:sex)),
			Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11)))
		),
		dt &amp;lt;&amp;lt; Graph Builder(
			Variables(X(:weight), Y(:height), Overlay(:sex)),
			Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11)))
		)
	);
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You could also check out Combine Windows from Window menu.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 17:37:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/714575#M89800</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-10T17:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Having multiple graphs in one window</title>
      <link>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/716928#M89859</link>
      <description>&lt;P&gt;I've made my own script (as an example) based on exactly what I wanted using 'V List Box' and 'H List Box'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below script can be executed when you open the "$SAMPLE_DATA/Big Class.jmp".&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Run Data", 

	H List Box(
		V List Box(
			Graph Builder(
				Size( 400, 350 ),
				Show Control Panel( 0 ),
				Variables( X( :weight ), Y( :height ), Overlay( :sex ), Color( :name ) ),
				Elements( Line( X, Y, Legend( 5 ) ), Points( X, Y, Legend( 6 ) ) ),
				SendToReport(
					Dispatch(
						{},
						"Graph Builder",
						OutlineBox,
						{Set Title( "weight" ), Image Export Display( Normal )}
					),
					Dispatch( {}, "height", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "weight", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} )
				)
			)
		), 

		V List Box(
			Graph Builder(
				Size( 400, 350 ),
				Show Control Panel( 0 ),
				Variables( X( :height ), Y( :weight ), Overlay( :sex ), Color( :name ) ),
				Elements( Line( X, Y, Legend( 5 ) ), Points( X, Y, Legend( 6 ) ) ),
				SendToReport(
					Dispatch(
						{},
						"Graph Builder",
						OutlineBox,
						{Set Title( "height" ), Image Export Display( Normal )}
					),
					Dispatch( {}, "weight", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "height", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} )
				)
			)
		),

	), 

	H List Box(
		V List Box(
			Graph Builder(
				Size( 400, 350 ),
				Show Control Panel( 0 ),
				Variables( X( :age ), Y( :height ), Overlay( :sex ), Color( :name ) ),
				Elements( Line( X, Y, Legend( 5 ) ), Points( X, Y, Legend( 6 ) ) ),
				SendToReport(
					Dispatch(
						{},
						"Graph Builder",
						OutlineBox,
						{Set Title( "age" ), Image Export Display( Normal )}
					),
					Dispatch( {}, "height", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "age", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} )
				)
			)
		), 

		V List Box(
			Graph Builder(
				Size( 400, 350 ),
				Show Control Panel( 0 ),
				Variables( X( :height ), Y( :age ), Overlay( :sex ), Color( :name ) ),
				Elements( Line( X, Y, Legend( 5 ) ), Points( X, Y, Legend( 6 ) ) ),
				SendToReport(
					Dispatch(
						{},
						"Graph Builder",
						OutlineBox,
						{Set Title( "height" ), Image Export Display( Normal )}
					),
					Dispatch( {}, "age", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "height", ScaleBox, {Label Row( Show Major Grid( 1 ) )} ),
					Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} )
				)
			)
		),

	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Jan 2024 16:55:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-multiple-graphs-in-one-window/m-p/716928#M89859</guid>
      <dc:creator>parkmintae72</dc:creator>
      <dc:date>2024-01-14T16:55:10Z</dc:date>
    </item>
  </channel>
</rss>

