Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以绘制部分依赖图以显示类概率并估计GBM模型的预测变量的影响?类似于partialPlotfrom randomForestpackage 的东西。
partialPlot
randomForest
根据这篇文章,使用 gbm 可以进行部分绘图。
在此先感谢您的帮助。
我找到了解决方案,
为了估计预测器的影响,应该使用这个:
plot(gbm.model, i.var = 1, lwd = 2, main = "")
i.var是变量预测器的数量,按照公式中显示的顺序。例如y = x1+x2+x3
i.var
y = x1+x2+x3
感谢坎贝尔先生