cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Browse apps to extend the software in the new JMP Marketplace
Choose Language Hide Translation Bar
carole
Level III

How to display several interval columns into graph builder

Hello, I would like to improve the first graphic below (see data table enclosed first script attached).

I am in JMP17.2.0, using graph builder to display two Y variables (A & B) in function of X (Labo), with an interval for each value of Y by level of X (U de A & U de B).

I would like to have the two Y variables in the same axis, and not one below the other.

But when I drag and drop to have the same axis (second print screen), I can't put a different column for each interval: it takes only U de B as interval role.

Can you help me please ?

 

Graphic ok with A below B on Y axis:

carole_0-1732027908919.png

Graph Builder(
	Size( 660, 666 ),
	Variables(
		X( :Labo ),
		Y( :B ),
		Y( :A ),
		Interval( :U de A ),
		Interval( :U de B )
	),
	Elements( Position( 1, 1 ), Points( X, Y, Interval( 2 ), Legend( 70 ) ) ),
	Elements( Position( 1, 2 ), Points( X, Y, Interval( 1 ), Legend( 74 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox, {Reference Line Order( 4 )} )
	)
)

Graphic NOT ok with A & B on same Y axis: same column for Interval

carole_1-1732028290132.png

Graph Builder(
	Size( 660, 666 ),
	Variables(
		X( :Labo ),
		Y( :B ),
		Y( :A, Position( 1 ) ),
		Interval( :U de A ),
		Interval( :U de B )
	),
	Elements( Points( X, Y( 1 ), Y( 2 ), Interval( 2 ), Legend( 70 ) ) )
)
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to display several interval columns into graph builder

You can do the same thing you did with separate Y-axis by adding two point plots

jthi_0-1732029757439.png

It is still saying it is just using one column for intervals, but I'm quite sure it is using both

jthi_1-1732029839491.png

 

 

-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How to display several interval columns into graph builder

You can do the same thing you did with separate Y-axis by adding two point plots

jthi_0-1732029757439.png

It is still saying it is just using one column for intervals, but I'm quite sure it is using both

jthi_1-1732029839491.png

 

 

-Jarmo
carole
Level III

Re: How to display several interval columns into graph builder

Many many thanks !

Carole