cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
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