cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Jackie_
Level VI

Seperate Y axis for Parallel Independent in Graph Builder

Hi,

 

Is there a way to have a separate Y-axis for each parameter in the graph builder in the parallel independent combination?

 

Combine scale - Parallel merged. 

Jackie__0-1712162405210.png

 

 

I want to have a separate Y axis for each parameter below

Combine scale - Parallel independent 

Jackie__0-1712162178679.png

 

 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
dt << Graph Builder(
	Size( 1146, 347 ),
	Show Control Panel( 0 ),
	Variables(
		X( :NPN1, Combine( "Parallel Independent" ) ),
		X( :PNP1, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :PNP2, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :NPN2, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :IVP6, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :PNP9, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :A2N, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :A2P, Position( 1 ), Combine( "Parallel Independent" ) ),
		X( :A2P1, Position( 1 ), Combine( "Parallel Independent" ) )
	),
	Elements(
		Histogram(
			X( 1 ),
			X( 2 ),
			X( 3 ),
			X( 4 ),
			X( 5 ),
			X( 6 ),
			X( 7 ),
			X( 8 ),
			X( 9 ),
			Legend( 4 )
		),
		Box Plot(
			X( 1 ),
			X( 2 ),
			X( 3 ),
			X( 4 ),
			X( 5 ),
			X( 6 ),
			X( 7 ),
			X( 8 ),
			X( 9 ),
			Legend( 5 )
		)
	)
);

 

TIA

 

1 REPLY 1
jthi
Super User

Re: Seperate Y axis for Parallel Independent in Graph Builder

I don't think you can do it with split data in graph builder without any scripting. In JMP18 you can use Page with stacked data to create something like this when you modify how many reports you show in single row

jthi_0-1712215462050.png

 

-Jarmo