matplotlib 更改mpl_toolkits.mplot3d图中的颜色条限制

llmtgqce  于 2023-10-24  发布在  其他
关注(0)|答案(1)|浏览(123)

我尝试使用以下方法更改mpl_toolkits.mplot3d图中的clim:

fig = plt.figure(figsize=(10,10))
ax = fig.add_subplot(111, projection='3d')
p = ax.scatter(x_, y_, z_, c='gray', s=0.25, alpha='0.5')
cbar = fig.colorbar(p)
cbar.set_clim(0,1)

这不起作用,并给出弃用警告:

MatplotlibDeprecationWarning: 
    The set_clim function was deprecated in Matplotlib 3.1 and will be removed in 3.3.
    Use ScalarMappable.set_clim instead.

有没有人知道如何在Axes 3D绘图中更改颜色条限制?
提前感谢!

bhmjp9jg

bhmjp9jg1#

这为我做了工作:

cbar.mappable.set_clim(0,1)

相关问题