对matplotlib中的不同子图使用相同的颜色栏

对matplotlib中的不同子图使用相同的颜色栏,第1张

对matplotlib中的不同子图使用相同的颜色

看下面的例子

import matplotlib.pyplot as pltfig, axes = plt.subplots(nrows=3, ncols=3)for ax in axes.flat:    im = ax.imshow(np.random.random((6,6)), interpolation='nearest', cmap='gnuplot',     vmin=0, vmax=1, extent=[0.05,0.5,1,0.05],aspect=0.5)fig.subplots_adjust(right=0.8)# put colorbar at desire positioncbar_ax = fig.add_axes([0.85, 0.15, 0.05, 0.7])fig.colorbar(im, cax=cbar_ax)plt.show()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5661961.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存