You can get the count from the table box
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Boston Housing.jmp");
partition = dt << Partition(
Y(:mvalue),
X(
:crim, :zn, :indus, :chas, :nox, :rooms, :age, :distance, :radial, :tax,
:pt, :b, :lstat
),
Validation Portion(0.3)
);
partition << go;
splitcount = (Report(partition)[Table Box(1), Number Col Box("Number of Splits")] << get)[1];
-Jarmo