cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
OneNorthJMP
Level V

Contour Plot arrange by Row

I want to plot contour plot arrange by row group by Wafer ID. By default, the graph will be arrange in columns. Is there a way to display the graph in n rows and n columns that i like? 

 

contour plot arrange by row.png

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Contour Plot arrange by Row

Here are 2 ways to do it.  The first is to place a simple window around the output and specify to use a H List Box() to arrange the different graphs.

The second is to use Graph Builder, and the built in capabilities of that platform.

hor1.PNG

hor2.PNG

Names Default to Here(1);
dt = Open("$SAMPLE_DATA/semiconductor capability.jmp");

New Window( "horizontal",
	H List Box(
		Contour Plot(
			X( :PNP1, :PNP2 ),
			Y( :NPN1 ),
			Show Data Points( 0 ),
			Fill Areas( 0 ),
			Label Contours( 0 ),
			Transform( "Range Normalized" ),
			Specify Contours(
				Min( 110 ),
				Max( 122 ),
				N( 7 )
			),
			by( :site )
		)
	)
);

// or with Graph Builder
Graph Builder(
	Size( 1009, 492 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP2 ), Y( :PNP1 ), Group X( :SITE ), Overlay( :NPN1 ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) ),
		Contour( X, Y, Legend( 5 ) )
	)
);
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Contour Plot arrange by Row

Here are 2 ways to do it.  The first is to place a simple window around the output and specify to use a H List Box() to arrange the different graphs.

The second is to use Graph Builder, and the built in capabilities of that platform.

hor1.PNG

hor2.PNG

Names Default to Here(1);
dt = Open("$SAMPLE_DATA/semiconductor capability.jmp");

New Window( "horizontal",
	H List Box(
		Contour Plot(
			X( :PNP1, :PNP2 ),
			Y( :NPN1 ),
			Show Data Points( 0 ),
			Fill Areas( 0 ),
			Label Contours( 0 ),
			Transform( "Range Normalized" ),
			Specify Contours(
				Min( 110 ),
				Max( 122 ),
				N( 7 )
			),
			by( :site )
		)
	)
);

// or with Graph Builder
Graph Builder(
	Size( 1009, 492 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP2 ), Y( :PNP1 ), Group X( :SITE ), Overlay( :NPN1 ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) ),
		Contour( X, Y, Legend( 5 ) )
	)
);
Jim

Recommended Articles