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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Georgios_Tsim
Level III

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

Recommended Articles