cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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