格式化部分依赖图

时间:2018-10-09 13:57:41

标签: python

我试图为gbm模型绘制部分依赖图。代码如下。

./config --prefix=/usr/local/emacs --with-gnutls=no

产生的图表如下所示。有三个问题。首先,我要删除y轴的标签。通过一些搜索,我找到了代码gbm_partialplot, axs= plot_partial_dependence(gbm_reg, features = [0,6,8, 5], X = inde2, feature_names= feature_names2, grid_resolution=50, n_cols = 2) gbm_partialplot.suptitle('Partial dependence') gbm_partialplot.axes.get_yaxis().set_visible(False) ,但它给我抛出了一个错误“ gbm_partialplot.axes.get_yaxis().set_visible(False)”。其次,在将'list' object has no attribute 'get_yaxis'设置为ncol之后,前两个图表的x轴消失了。第三,标题似乎离图表太远了,我想知道应该如何更改代码。谢谢。

enter image description here

0 个答案:

没有答案