<?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: Independent Grouped X Scales in Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Independent-Grouped-X-Scales-in-Graph-Builder/m-p/48289#M27499</link>
    <description>&lt;P&gt;In JMP 13, in Graph Builder I dragged X1, X2 and X3 to the x axis, one at a time.&amp;nbsp; When I dragged X2 I dropped it into the zone at the lower right, not the center.&amp;nbsp; Same for X3.&amp;nbsp; This is my result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3XAxes.png" style="width: 659px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8593i9EF2FFF3183DAC10/image-size/large?v=v2&amp;amp;px=999" role="button" title="3XAxes.png" alt="3XAxes.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here's the corresponding JSL:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Test", 	Add Rows( 4 ),
	New Script("Percent Reacted vs. X1 &amp;amp; 2 more",
		Graph Builder(Size( 486, 452 ),
			Show Control Panel( 0 ),
			Variables( X( :X1 ), X( :X2 ), X( :X3 ), Y( :Percent Reacted ) ),
			Elements( Position( 1, 1 ),
				Line( X, Y, Legend( 40 ) ),
				Points( X, Y, Legend( 43 ) ) ),
			Elements( Position( 2, 1 ),
				Line( X, Y, Legend( 41 ) ),
				Points( X, Y, Legend( 44 ) ) ),
			Elements( Position( 3, 1 ),
				Line( X, Y, Legend( 42 ) ),
				Points( X, Y, Legend( 45 ) ) )
		)
	),
	New Column( "X1", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [1, 2, 3, 4] )),
	New Column( "X2", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [44, 33, 22, 11] )),
	New Column( "X3", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [444, 333, 555, 666] )),
	New Column( "Percent Reacted", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [10, 20, 30, 20] ))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 Dec 2017 15:56:10 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2017-12-07T15:56:10Z</dc:date>
    <item>
      <title>Independent Grouped X Scales in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Independent-Grouped-X-Scales-in-Graph-Builder/m-p/48286#M27498</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I've just seen this Live Webcast "Using Design of Experiments to Increase Predictability, Optimise Processes and Minimise Costs".&lt;/P&gt;
&lt;P&gt;One of the charts I saw was Graph Builder single chart with several X Scales (X Group) but each X Scale had its&amp;nbsp;own min and max values.&lt;/P&gt;
&lt;P&gt;Please see attached the image. In that image I would like that each Input will have its own independent X scale.&lt;/P&gt;
&lt;P&gt;Now, when I saw it is possible, how do I do it? :)&lt;/img&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chart example.JPG" style="width: 624px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8592iACC78CAA256D4735/image-size/large?v=v2&amp;amp;px=999" role="button" title="chart example.JPG" alt="chart example.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 15:31:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Independent-Grouped-X-Scales-in-Graph-Builder/m-p/48286#M27498</guid>
      <dc:creator>tom_abramov</dc:creator>
      <dc:date>2017-12-07T15:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Grouped X Scales in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Independent-Grouped-X-Scales-in-Graph-Builder/m-p/48289#M27499</link>
      <description>&lt;P&gt;In JMP 13, in Graph Builder I dragged X1, X2 and X3 to the x axis, one at a time.&amp;nbsp; When I dragged X2 I dropped it into the zone at the lower right, not the center.&amp;nbsp; Same for X3.&amp;nbsp; This is my result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3XAxes.png" style="width: 659px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8593i9EF2FFF3183DAC10/image-size/large?v=v2&amp;amp;px=999" role="button" title="3XAxes.png" alt="3XAxes.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here's the corresponding JSL:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Test", 	Add Rows( 4 ),
	New Script("Percent Reacted vs. X1 &amp;amp; 2 more",
		Graph Builder(Size( 486, 452 ),
			Show Control Panel( 0 ),
			Variables( X( :X1 ), X( :X2 ), X( :X3 ), Y( :Percent Reacted ) ),
			Elements( Position( 1, 1 ),
				Line( X, Y, Legend( 40 ) ),
				Points( X, Y, Legend( 43 ) ) ),
			Elements( Position( 2, 1 ),
				Line( X, Y, Legend( 41 ) ),
				Points( X, Y, Legend( 44 ) ) ),
			Elements( Position( 3, 1 ),
				Line( X, Y, Legend( 42 ) ),
				Points( X, Y, Legend( 45 ) ) )
		)
	),
	New Column( "X1", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [1, 2, 3, 4] )),
	New Column( "X2", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [44, 33, 22, 11] )),
	New Column( "X3", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [444, 333, 555, 666] )),
	New Column( "Percent Reacted", Numeric, "Continuous", Format( "Best", 12 ),
		Set Values( [10, 20, 30, 20] ))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 15:56:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Independent-Grouped-X-Scales-in-Graph-Builder/m-p/48289#M27499</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-12-07T15:56:10Z</dc:date>
    </item>
  </channel>
</rss>

