<?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: Graph Builder Wrap With different Y Axis Scales in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50319#M28627</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt; that's kind of what I was looking for.&amp;nbsp; Your solution is general enough I could adapt it for my uses.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jan 2018 20:56:50 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2018-01-26T20:56:50Z</dc:date>
    <item>
      <title>Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50307#M28619</link>
      <description>&lt;P&gt;Is there a way to use the wrap functionality of graph builder where all graphs share a common x axis (time), but have differing Y axis scales?&amp;nbsp; I tried the Page option which is OK, but I'd prefer a grid of graphs.&amp;nbsp; Here's an example where one of the graphs throws the scale way off for the other graphs.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GBLabs.png" style="width: 637px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9080i41BCF2AD437E93D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="GBLabs.png" alt="GBLabs.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 19:33:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50307#M28619</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-01-26T19:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50314#M28624</link>
      <description>&lt;P&gt;I've done this sort of thing, still looking for something better though:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Graphs.PNG" style="width: 971px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9082iB3B9EF6916F899EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Graphs.PNG" alt="Graphs.PNG" /&gt;&lt;/span&gt;&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" );

//Window to hold graphs
win = New window("Graphs",
	lub = Lineup Box( NCol( 3 ) )
);

//List of graphs to make
ages = ( Associative Array( Column( dt, "age" ) ) &amp;lt;&amp;lt; Get Keys );

//For each graph
For( i = 1, i &amp;lt;= N Items( ages ), i++,
	
	//Add graph to the lineup box
	lub &amp;lt;&amp;lt; Append( Graph Builder(
		Size( 300, 300 ),
		Show Control Panel( 0 ),
		Show Footer( 0 ),
		Variables( X( :height ), Y( :weight ) ),
		Elements( Points( X, Y, Legend( 3 ) ) ),
		Local Data Filter(
			Close Outline( 1 ),
			Add Filter(
				columns( :age ),
				Where( :age == ages[i] ),
				Display( :age, Size( 224, 126 ), List Display )
			)
		),
		SendToReport(
			Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "Age: " || char(ages[i]) )} ),
			Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} )
		)
	); );
	
	
);

//Hide all of the data filters
(win &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey='Data Filter']") ) &amp;lt;&amp;lt; Visibility("collapse");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jan 2018 20:37:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50314#M28624</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2018-01-26T20:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50319#M28627</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt; that's kind of what I was looking for.&amp;nbsp; Your solution is general enough I could adapt it for my uses.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 20:56:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50319#M28627</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-01-26T20:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50353#M28643</link>
      <description>&lt;P&gt;It's not obvious, but if you wrap&amp;nbsp;a call to Bivariate() with a By Variable in a Fit Group(), you can take advantage of &amp;lt;&amp;lt; {Arrange In Rows()}, both interactively from the Fit Group Red Triangle, and in scripting:&amp;nbsp;&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" );

Fit Group(Bivariate( Y( :weight ), X( :height ), By( :age ) ),&amp;lt;&amp;lt;{Arrange in Rows( 3 )});

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="FitGroup.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9096iC422B86BB1844FE4/image-size/large?v=v2&amp;amp;px=999" role="button" title="FitGroup.png" alt="FitGroup.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 18:46:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50353#M28643</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2018-01-28T18:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50355#M28644</link>
      <description>&lt;P&gt;It occurs to me that Peter's original question was about Graph Builder and I gave a solution using Fit Y by X.&amp;nbsp; If you need Graph Builder functionality, it turns out you can also use Fit Group() with Graph Builder output using a By variable:&amp;nbsp;&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" );

Fit Group(
	Graph Builder(
		Size( 300, 300 ),
		Show Control Panel( 0 ),
		Show Legend( 0 ),
		Variables( X( :height ), Y( :weight ) ),
		Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
		By( :age )
	),
	&amp;lt;&amp;lt;{Arrange in Rows( 3 )}
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="GBGroup.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9097iEE565CC4CA4FA805/image-size/large?v=v2&amp;amp;px=999" role="button" title="GBGroup.png" alt="GBGroup.png" /&gt;&lt;/span&gt;&lt;/P&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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2018 21:35:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50355#M28644</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2018-01-28T21:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50362#M28648</link>
      <description>&lt;P&gt;Awesome thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 13:24:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/50362#M28648</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-01-29T13:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder Wrap With different Y Axis Scales</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/853237#M102576</link>
      <description>&lt;P&gt;With JMP18, it's now possible to use "page" for this purpose.&lt;BR /&gt;I love it!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 21:30:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/m-p/853237#M102576</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-03-24T21:30:15Z</dc:date>
    </item>
  </channel>
</rss>

