cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
Georgios_Tsim
Level II

Reference Lines in Variability Chart taken from a list using for loop

I have a list say "myList"  that contains a dynamic number of elements. I would like to add reference lines taken from the list in the following variability charts

 

Variability Chart(
					Y( :Value),
					X( :Time Point, :Storage Condition, :Level ),
					Std Dev Chart( 0 ),
					By( :Parameter ),
					SendToReport(
						Dispatch(
							{"Variability Chart for Value"},
							"Variability Chart",
							FrameBox,
							{Row Legend(
								:Label,
								Color( 1 ),
								Color Theme( "JMP Default" ),
								Marker( 0 ),
								Marker Theme( "" ),
								Continuous Scale( 0 ),
								Reverse Scale( 0 ),
								Excluded Rows( 0 )
							)}
						)
					)
				),

If there is a solution without using a loop it is even better.

 

1 REPLY 1
jthi
Super User

Re: Reference Lines in Variability Chart taken from a list using for loop

Is there some specific reason for avoiding loops?

 

These older posts might help (things might be changed a bit depending on your JMP version), but basically: loop over the charts and add the lines as reference lines 

 

-Jarmo