欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python的matplotlib生成colorbar

程序员文章站 2022-03-21 11:13:38
...

当有些画图的库不能生成colorbar时,需要手动生成colorbar:plt.colorbar(h),h为图的句柄

举个例子,mne.viz.plot_topomap函数不支持显示colorbar,因此需要通过matplotlib库来先设置colorbar再显示

im, cn = mne.viz.plot_topomap(w, pos, vmin=-5, vmax=5, show=False)
plt.colorbar(im)
plt.show()