このバージョンのヘルプはこれ以降更新されません。最新のヘルプは https://www.jmp.com/support/help/ja/15.2   からご覧いただけます。


図12.29 クリッピングされていない境界(左)とクリッピングされた境界(右)
Contour SegオブジェクトにClip Shapeメッセージを送ってディスプレイセグメントをクリッピングします。
Open( "$SAMPLE_DATA/Cities.jmp" );
gb = Graph Builder(
	Size( 653, 396 ),
	Show Control Panel( 0 ),
	Variables( X( :経度), Y( :緯度) ),
	Elements( Contour( X, Y, Legend( 2 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Background Map( Boundaries( "US States" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )}
		)
	)
);
cs = (gb << Report)[FrameBox( 1 )] << Find Seg( Contour Seg( 1 ) );
 
Wait( 2 );
 
cs << Clip Shape( Boundaries( "US States" ) );
ヒント: クリッピングを解除するには、Clip Shape(Empty())を送ります。
Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( :Name("身長(インチ)") ), Y( ::Name("体重(ポンド)") ), Overlay( :性別 ) ),
	Elements( Contour( X, Y, Legend( 3 ) ) )
);
 
r = (gb << Report);
 
cs = r[FrameBox( 1 )] << Find Seg( Contour Seg( 1 ) );
 
cs << Clip Shape( Path( [60 80 1, 50 140 2, 65 120 2, 70 65 -2] ) );
図12.30 クリッピングされていない等高線(左)とクリッピングされた等高線(右)