To get the script that will generate the Partition, go to the red triangle and select 
     Save Script=>To Script Window

It will provide you with the following script
Partition(
	Y( :weight ),
	X( :age, :sex, :height ),
	Split History( 1 ),
	Informative Missing( 1 ),
	Initial Splits( :height < 65, {:height < 60, {}, {:age == {12, 13}}} ),
	SendToReport(
		Dispatch( {}, "Partition Report", FrameBox, {Frame Size( 480, 82 )} ),
		Dispatch( {}, "Split History", OutlineBox, {Close( 1 )} )
	)
);
You can reference this window with
p=current report();
 
					
				
			
			
				
	Jim