rpart 更改节点中的文本大小

rpart change text size in node

我想更改 rpart 中节点的文本大小。 如果文本太大,则文本不适合节点的框。不过,应该够了 space.

rpart.plot(pruned_tree_model, type=0,tweak=1.5,leaf.round=0) 

是否有一些参数要添加?

您实际上可以像在正常 plot 中控制文本大小一样更改节点中的文本大小 --- 通过 cex 参数:

library(rpart)
fit <- rpart(Mileage ~ Weight, car.test.frame)

par(mfrow = c(1, 2))
plot(fit)
text(fit)
plot(fit)
text(fit, cex = 0.5)