I want to do a multilabel classification with R randomForest. I have ten classes A..J,
I found examples how to predict a single class, like:
r = randomForest(J ~., data=train, importance=TRUE, do.trace=100)
But I want to predict more classes, for instance H,I,J. (i.e. say that only A..G are given attributes). How can I do it?
I have an idea of preserving A..G and only one of the predicted classes (H/I/J) and run randomForest 3 times, but maybe there is a better way? To do it in one run?
Many thanks in advance.