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
gandi2223
Level III

Contour plot, set X and Y ranges in JSL

When creating a contour plot in JSL, is there a way to set fixed (pre-determined) values for the X and Y maximum and minimum? I.e. to define the area the contour plot will cover, as can be done manually in the X / Y Axis Settings dialogue?

 

My datasets cover different ranges in x and y, but I would like all contour plots to have the same x and y extents.

 

Something like:

Contour Plot(
	X( :X_col, :Y_col ),
	Y( :data ),
	X_minimum(-75000),
	X_maximum(75000)
)

(This obviously does not work.)

10 REPLIES 10
Jeff_Perkinson
Community Manager Community Manager

Re: Contour plot, set X and Y ranges in JSL

An easy way to do this might be to set the Axis Property for your X and Y columns. That will ensure that every plot made with those columns has the scaling that you want.

 

2021-01-03_13-48-27.778.png

-Jeff

Recommended Articles