rpart node assignment
问题 Is it possible to extract the node assignment for a fitted rpart tree? What about when I apply the model to new data? The idea is that I would like to use the nodes as a way to cluster my data. In other packages (e.g. SPSS), I can save the predicted class, probabilities, and node number for further analysis. Given how powerful R can be, I imagine there is a simple solution to this. 回答1: Try using the partykit package: library(rpart) z.auto <- rpart(Mileage ~ Weight, car.test.frame) library