使用mpld3错误的colorbar标签

时间:2014-09-24 14:34:22

标签: python matplotlib mpld3

我使用mpld3在浏览器中绘制一些图。散点图显示正确的颜色,但绘图的颜色条具有错误的标签。尽管vmin和vmax不同,但颜色条始终标记为0到1。有什么想法吗?

f, a= plt.subplots(figsize=(10,10))
f.subplots_adjust(left=0.2, right=0.90, bottom=0.05, top=0.95,
  hspace=0.1, wspace=0.1)

im=a.scatter(xList,yList,s=40,vmin=-200,vmax=200,edgecolors='none',c=zList)
divider = make_axes_locatable(a)
cax = divider.append_axes("right", size="5%", pad=0.05)
cbar=plt.colorbar(im, cax=cax)
cbar.set_label('Magnetfeld [nt]', labelpad=10)

a.set_xlabel('Distanz [m]')
a.set_ylabel('Distanz [m]', labelpad=100)
a.set_title('korrigiertes Magnetfeld')
a.set_aspect('equal')

return render_template('upload=mobil.html',name=mpld3.fig_to_html(f,template_type="simple"))

1 个答案:

答案 0 :(得分:1)

这看起来像mpld3个错误。感谢您的认同。我打开了an issue for it here。欢迎补丁!