我正在尝试从shap
包中绘制一个依赖图网格。这是我想要的示例的 MWE 代码:
fig, axs = plt.subplots(2,8, figsize=(16, 4), facecolor='w', edgecolor='k') # figsize=(width, height)
fig.subplots_adjust(hspace = .5, wspace=.001)
axs = axs.ravel()
for i in range(10):
axs[i].contourf(np.random.rand(12,12),5,cmap=plt.cm.Oranges)
axs[i].set_title(str(250+i))
plt.show()
这是我到目前为止的代码。有几件事不起作用:
- 我的网格的图形大小不受我的
figsize
论点的影响 - 我的代码在网格下方绘制了更大版本的图。
- 网格中仅显示了一个相关性图。
fig, axs = plt.subplots(1,8, figsize=(4, 2))
axs = axs.ravel()
for b in X_test.columns[:3]:
for a in X_test.columns[:3]:
shap.dependence_plot((a, b), shap_interaction_values, X_test)