cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

4 REPLIES 4
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

Re: How to display several interval columns into graph builder

Hello,

 

I am using JMP 18.0.2, student edition.

I seem to be having issues adding a third interval column to my data using Graph Builder to use and error interval on bar graphs. That is, I can only add two error intervals in Graph Builder at time, using the Interval drop zone (Adding the user-defined error interval option to the graph builder - JMP User Community), but it is not allowing me to add a third error interval for my third set of bars (green bars below):

 

jstanfill4911_0-1741896138982.png

 

What is the work around here? Thanks,

Jimmy

 

jthi
Super User

Re: How to display several interval columns into graph builder

How does your data look like (you might have to do some data modifications)?

-Jarmo

Recommended Articles