To get the script that will generate the Partition, go to the red triangle and select
Save Script=>To Script Window
![txnelson_0-1646894257613.png txnelson_0-1646894257613.png](https://community.jmp.com/t5/image/serverpage/image-id/40676i947DF8FF3C0A9478/image-size/medium?v=v2&px=400)
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