使用 R 的rpart
函数时,我可以很容易地用它拟合模型。例如:
# Classification Tree with rpart
library(rpart)
# grow tree
fit <- rpart(Kyphosis ~ Age + Number + Start,
method="class", data=kyphosis)
printcp(fit) # display the results
plotcp(fit)
summary(fit) # detailed summary of splits
# plot tree
plot(fit, uniform=TRUE,
main="Classification Tree for Kyphosis")
text(fit, use.n=TRUE, all=TRUE, cex=.8)
我的问题是 - 如何衡量我的三个解释变量(年龄、数字、开始)中的每一个对模型的“重要性”?
如果这是一个回归模型,我可以从“anova”F 检验中查看 p 值(在lm
有和没有变量的模型之间)。但是在物体上使用“anova”的等价物是lm
什么rpart
?
(我希望我能把我的问题说清楚)
谢谢。