cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar

Arrange contour plot in groups

Hi Guys,

I have created contour sheet contains 25 contour plots, but all came in one column (As shown below). Is there any option to arrange contour plots based on our requirement.

10580_pastedImage_0.png

Thanks in advance,

Ravikishor

1 ACCEPTED SOLUTION

Accepted Solutions
ian_jmp
Staff

Re: Arrange contour plot in groups

The contour plot element is now available in Graph Builder, which (through the 'X Group' and 'Y Group' slots, for example) gives many more layout options 'out of the box' than does the Contour Plot platform itself. For example, by dragging and dropping, you can produces a trellis plot by wafer and lot, and then save the resulting script.

From memory, though, there are a few contour options not in Graph Builder, and if you need these you need to stick with what you have. Other layouts are certainly possible, but would require just a little JSL.

View solution in original post

4 REPLIES 4
ian_jmp
Staff

Re: Arrange contour plot in groups

The contour plot element is now available in Graph Builder, which (through the 'X Group' and 'Y Group' slots, for example) gives many more layout options 'out of the box' than does the Contour Plot platform itself. For example, by dragging and dropping, you can produces a trellis plot by wafer and lot, and then save the resulting script.

From memory, though, there are a few contour options not in Graph Builder, and if you need these you need to stick with what you have. Other layouts are certainly possible, but would require just a little JSL.

Stanislav
Level I

Re: Arrange contour plot in groups

Graph Builder is great tool but someone can prefer simple solution like this one:

 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Wafer Stacked.jmp" );
::Ncolumns = 3;
Charts = New Window( "Contour maps",
Lineup Box( N Col( ::Ncolumns ),
Contour Plot( X( :X_Die, :Y_Die ), Y( :Defects ), Show Data Points( 0 ), By( :Wafer ) )
)

 

);

 

rc_hertzy
Level III

Re: Arrange contour plot in groups

Elegant! Needs to add a final parenthesis at end.
)
Miof
Level II

Re: Arrange contour plot in groups

and how can we add a FrameBox and the ScaleBox(s)?