cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
tom_abramov
Level V

Independent Grouped X Scales in Graph Builder

Hello,

I've just seen this Live Webcast "Using Design of Experiments to Increase Predictability, Optimise Processes and Minimise Costs".

One of the charts I saw was Graph Builder single chart with several X Scales (X Group) but each X Scale had its own min and max values.

Please see attached the image. In that image I would like that each Input will have its own independent X scale.

Now, when I saw it is possible, how do I do it? :)

Thank you.

chart example.JPG

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: Independent Grouped X Scales in Graph Builder

In JMP 13, in Graph Builder I dragged X1, X2 and X3 to the x axis, one at a time.  When I dragged X2 I dropped it into the zone at the lower right, not the center.  Same for X3.  This is my result:

3XAxes.png

Here's the corresponding JSL:

New Table( "Test", 	Add Rows( 4 ),
	New Script("Percent Reacted vs. X1 & 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] ))
);

View solution in original post

1 REPLY 1
pmroz
Super User

Re: Independent Grouped X Scales in Graph Builder

In JMP 13, in Graph Builder I dragged X1, X2 and X3 to the x axis, one at a time.  When I dragged X2 I dropped it into the zone at the lower right, not the center.  Same for X3.  This is my result:

3XAxes.png

Here's the corresponding JSL:

New Table( "Test", 	Add Rows( 4 ),
	New Script("Percent Reacted vs. X1 & 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] ))
);

Recommended Articles