我使用r中的rpart軟件包從培訓數據構建了一個決策樹。現在我有更多的數據,並且我想根據樹來檢查它以檢查模型。邏輯上/迭代地,我想要做到以下幾點:如何根據R中的決策樹模型測試數據?
for each datapoint in new data
run point thru decision tree, branching as appropriate
examine how tree classifies the data point
determine if the datapoint is a true positive or false positive
我該如何做R?
使用'預測()'函數:http://stat.ethz.ch/R-manual/R -devel/library/rpart/html/predict.rpart.html – David