cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Recommended Articles