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()
上一篇: js实现调用网络摄像头及常见错误处理
下一篇: Matplotlib中文显示问题