cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Thierry_S
Super User

JMP > Graph Builder > Error Interval > Asymmetrical Error Bars?

Hi JMP Community,

Is it possible to assign asymmetrical error intervals in Graph Builder when using a custom interval?

Thanks.

Best,

TS 

Thierry R. Sornasse
1 ACCEPTED SOLUTION

Accepted Solutions
Byron_JMP
Staff

Re: JMP > Graph Builder > Error Interval > Asymmetrical Error Bars?

Yup!

Byron_JMP_0-1660225422478.png

In this table I have a column for high and low intervals

I drug both the high and columns to the interval role in the graph builder dialog to get this graph

Byron_JMP_1-1660225547012.png

 

From the graph builder script, you can see that the function can take two interval arguments.

Graph Builder(
	Size( 273, 296 ),
	Show Control Panel( 0 ),
	Variables( X( :group ), Y( :center ), Interval( :high ), Interval( :low ) ),
	Elements( Points( X, Y, Legend( 6 ) ) )
);

 

JMP Systems Engineer, Health and Life Sciences (Pharma)

View solution in original post

1 REPLY 1
Byron_JMP
Staff

Re: JMP > Graph Builder > Error Interval > Asymmetrical Error Bars?

Yup!

Byron_JMP_0-1660225422478.png

In this table I have a column for high and low intervals

I drug both the high and columns to the interval role in the graph builder dialog to get this graph

Byron_JMP_1-1660225547012.png

 

From the graph builder script, you can see that the function can take two interval arguments.

Graph Builder(
	Size( 273, 296 ),
	Show Control Panel( 0 ),
	Variables( X( :group ), Y( :center ), Interval( :high ), Interval( :low ) ),
	Elements( Points( X, Y, Legend( 6 ) ) )
);

 

JMP Systems Engineer, Health and Life Sciences (Pharma)