- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
Thanks in advance,
Ravikishor
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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 ) )
)
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Arrange contour plot in groups
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Arrange contour plot in groups
and how can we add a FrameBox and the ScaleBox(s)?