The number of observations read by the HSPLIT procedure might be smaller than expected and the scored data might not contain all rows


When you run PROC HPSPLIT, the following set of symptoms might occur:

To work around the problem, use a PERFORMANCE statement with the NTHREADS=1 option:

performance nthreads=1;

Here is an example:

proc hpsplit data=Wine seed=15533;
class Cultivar;
model Cultivar = Alcohol Malic Ash Alkan Mg TotPhen Flav
NFPhen Cyanins Color Hue ODRatio Proline;
grow entropy;
prune costcomplexity;
performance nthreads=1;
run;