在函数rpart.plot中(从rpart.plot包扩展到rpart包),有一个参数box.col
,它控制树中节点的颜色。如何设置它使其为节点着色,以使响应相同的节点也着色相同?
我使用box.col
参数尝试了多种不同的变体,例如使用cols
作为因子,而忽略了选择的颜色。我到目前为止最接近的信息如下所示:
set.seed(1);x <- runif(100)
set.seed(2);y <- runif(100)
data <- matrix(c(x,y),ncol=2)
fact <- as.numeric(factor(--((x > 0.5 & y < 0.5))))
fact[x < 0.1] = 3
cols <- (c("grey80", "red", "blue"))
plot(data, col=fact)
t1 <- rpart(factor(fact) ~ data)
rpart.plot(t1, type=5, extra=2,
box.col=cols)
我希望/希望每个匹配的响应节点被涂成相同的颜色。在给定的代码中,我希望'1'节点为grey80,'2'为红色,而'3'为蓝色。上图显示了实际发生的情况,这没有帮助。
正如在第一部分中提到的,我如何设置它以使节点着色,从而使相同响应的节点具有相同的着色?
答案 0 :(得分:2)
如何使用box.pallete
属性
rpart.plot(t1, type=5, extra=2,
box.palette = list('grey80','red','blue'))
有关更多说明,如果在factor
中将cols设置为rpart.plot
,cols将按顺序分配给每个节点。
例如,
>t1
1) root 100 29 1 (0.7100000 0.2200000 0.0700000) # --> 'grey80'
2) data1>=0.1037049 93 22 1 (0.7634409 0.2365591 0.0000000) # --> 'red'
4) data1< 0.5413779 47 0 1 (1.0000000 0.0000000 0.0000000) * # --> 'blue'
5) data1>=0.5413779 46 22 1 (0.5217391 0.4782609 0.0000000) # --> 'grey80'
10) data2>=0.4849942 24 0 1 (1.0000000 0.0000000 0.0000000) * # --> 'red'
11) data2< 0.4849942 22 0 2 (0.0000000 1.0000000 0.0000000) *# --> 'blue'
3) data1< 0.1037049 7 0 3 (0.0000000 0.0000000 1.0000000) * # --> 'grey 80'