我想通过plt.subplots创建多个imshows。每个imshow的轴应该用字符串标记,而不是用数字标记(这些是表示类别之间相关性的相关矩阵)。
我从documentation(非常底部)发现,plt.yticks()
返回我想要的内容,但我似乎无法设置它们。 ax.yticks(...)
也不起作用。
我找到docs about the ticker locator and formatter,但我不确定这是否或如何有用
A = np.random.random((3,3))
B = np.random.random((3,3))+1
C = np.random.random((3,3))+2
D = np.random.random((3,3))+3
lbls = ['la', 'le', 'li']
fig, axar = plt.subplots(2,2)
fig.subplots_adjust(right=0.8)
cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7])
ar_plts = [A, B, C, D]
for i,ax in enumerate(axar.flat):
im = ax.imshow(ar_plts[i]
, interpolation='nearest'
, origin='lower')
ax.grid(False)
plt.yticks(np.arange(len(lbls)), lbls)
fig.colorbar(im, cax=cbar_ax)
fig_path = r"blah/blub"
fig_name = "matrices.png"
fig_fobj = os.path.join(fig_path, fig_name)
fig.savefig(fig_fobj)
答案 0 :(得分:7)
您可以使用plt.xticks
或ax.set_xticks
更改数字(y代码相同),但这不允许您更改刻度线的标签。为此,您需要ax.set_xticklabels
(y相同)。
这段代码对我有用
A = np.random.random((3,3))
B = np.random.random((3,3))+1
C = np.random.random((3,3))+2
D = np.random.random((3,3))+3
lbls = ['la', 'le', 'li']
fig, axar = plt.subplots(2,2)
fig.subplots_adjust(right=0.8)
cbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7])
ar_plts = [A, B, C, D]
for i,ax in enumerate(axar.flat):
im = ax.imshow(ar_plts[i]
, interpolation='nearest'
, origin='lower')
ax.grid(False)
ax.set_yticks([0,1,2])
ax.set_xticks([0,1,2])
ax.set_xticklabels(lbls)
ax.set_yticklabels(lbls)
fig.colorbar(im, cax=cbar_ax)
fig_path = r"blah/blub"
fig_name = "matrices.png"
fig_fobj = os.path.join(fig_path, fig_name)
fig.savefig(fig_fobj)
对于多个绘图,您需要小心使用颜色条。它仅为您的上一个情节提供正确的值。如果所有图表都应该正确,则需要使用
im = ax.imshow(ar_plts[i],
interpolation='nearest',
origin='lower',
vmin=0.0,vmax=1.0)
我认为您数据中的最小值为0.0
且最大1.0
。