Does CART allow you to build a single model that will simultaneously predict more than one different target?
This topic has been on our radar screen for decades! Leo Breiman sent us a crude version of a CART tree that accomplished this in 1992 and we spoke with him at length on how to modify CART to accomplish this around that time. Later, in 1998, we worked with a client who also had developed their own ”vector” tree for their consulting practice in the 1970s! To date however, we do have a simple way to do this in the shipping version of CART. But stay tuned as we expect to have some further news on this topic in 2012.
BTW, a final note: If you only have a few low level targets (eg 2 binary targets) you can always convert the set of targets into one multi–class categorical, as follows:
target_1 target_2 new_composite_target 0 0 0 0 1 1 1 0 2 1 1 3 If you build a single CART tree using the new composite target for modeling you will develop a single tree predicting both target_1 and target_2 simultaneously. If your sample size is large enough you can create composites of many levels effectively.
In this type of model we would recommend that you use the AUXILIARY command as in:
AUXILIARY target_1 target_2 etc
which will allow you to easily see the data distribution for each original target in every node (including contrasting train and test results).


