可变重要性图

发布于 2025-01-21 23:23:46 字数 974 浏览 0 评论 0原文

我正在从随机森林回归中研究可变的重要性图,并希望使用VIP软件包将可变标签应用于Y轴而不是隐秘的变量名称,以易于解释。

如何修改代码以在Y轴上添加标签?

我当前的代码:

library(randomForest)
library(vip)
model1 <- randomForest(y ~ .,
                      data=train,
                      mtry = 8,
                      ntree=500,
                      import[enter image description here][1]ance=TRUE,
                      proximity=TRUE)

plot_rf_1 <- vip(model1, 
                 num_features = 6,
                 include_type = TRUE,
                 geom = "point",
                 horizontal = TRUE,
                 mapping = aes_string(fill="var.labels"),
                 aesthetics = list(color = "blue", shape = 16, size = 3)) +
                theme_light()
grid.arrange(plot_rf_1, nrow = 1)```

可变重要性图:

”在此处输入图像说明”

I'm working on variable importance plot from random forest regression and want to apply variable labels to y-axis instead of cryptic variable names using the VIP package for ease of interpretation.

How to modify the code to add labels on y axis?

My current code:

library(randomForest)
library(vip)
model1 <- randomForest(y ~ .,
                      data=train,
                      mtry = 8,
                      ntree=500,
                      import[enter image description here][1]ance=TRUE,
                      proximity=TRUE)

plot_rf_1 <- vip(model1, 
                 num_features = 6,
                 include_type = TRUE,
                 geom = "point",
                 horizontal = TRUE,
                 mapping = aes_string(fill="var.labels"),
                 aesthetics = list(color = "blue", shape = 16, size = 3)) +
                theme_light()
grid.arrange(plot_rf_1, nrow = 1)```

Variable importance plot:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文