如何自定义包“ randomForest”生成的重要性图

时间:2018-09-06 08:48:10

标签: r random-forest

重要图:

enter image description here

我想将y轴文本向右对齐,还想根据不同的变量组为变量着色。例如柠檬烯和缬草烯,a-Selinene和g-Selinen分别在同一组中。

但是我在包“ randomForest”中找不到任何用于自定义情节的代码。您对定制有何建议?谢谢!

1 个答案:

答案 0 :(得分:1)

下面是一个工作示例:

您需要创建所需的分组,然后将ggplotgeom_bar一起使用。

set.seed(4543)
data(mtcars)

library(randomForest)
mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000, keep.forest=FALSE,
                          importance=TRUE)
imp <- varImpPlot(mtcars.rf) # let's save the varImp object

# this part just creates the data.frame for the plot part
library(dplyr)
imp <- as.data.frame(imp)
imp$varnames <- rownames(imp) # row names to column
rownames(imp) <- NULL  
imp$var_categ <- rep(1:2, 5) # random var category

# this is the plot part, be sure to use reorder with the correct measure name
library(ggplot2) 
ggplot(imp, aes(x=reorder(varnames, IncNodePurity), weight=IncNodePurity, fill=as.factor(var_categ))) + 
  geom_bar() +
  scale_fill_discrete(name="Variable Group") +
  ylab("IncNodePurity") +
  xlab("Variable Name")

您可以对其他重要性度量执行相同操作,只需相应地更改绘图部分(weight = %IncMSE)。

enter image description here

根据OP答案进行更新:

ggplot(imp, aes(x=reorder(varnames, IncNodePurity), y=IncNodePurity, color=as.factor(var_categ))) + 
  geom_point() +
  geom_segment(aes(x=varnames,xend=varnames,y=0,yend=IncNodePurity)) +
  scale_color_discrete(name="Variable Group") +
  ylab("IncNodePurity") +
  xlab("Variable Name") +
  coord_flip()

enter image description here