rpart更改节点中的文本大小
Posted
技术标签:
【中文标题】rpart更改节点中的文本大小【英文标题】:rpart change text size in node 【发布时间】:2016-03-10 08:33:57 【问题描述】:我想更改 rpart 中节点的文本大小。 如果文本太大,则文本不适合节点的框。不过,应该有足够的空间。
rpart.plot(pruned_tree_model, type=0,tweak=1.5,leaf.round=0)
有什么要补充的论据吗?
【问题讨论】:
【参考方案1】:您实际上可以更改节点中的文本大小,就像在正常 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)
【讨论】:
以上是关于rpart更改节点中的文本大小的主要内容,如果未能解决你的问题,请参考以下文章