借用Matplotlib文档页面上的示例并稍微修改代码,
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
def randrange(n, vmin, vmax):
return (vmax-vmin)*np.random.rand(n) + vmin
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
n = 100
for c, m, zl, zh in [('r', 'o', -50, -25), ('b', '^', -30, -5)]:
xs = randrange(n, 23, 32)
ys = randrange(n, 0, 100)
zs = randrange(n, zl, zh)
cs = randrange(n, 0, 100)
ax.scatter(xs, ys, zs, c=cs, marker=m)
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
plt.show()
将为每个点给予不同颜色的3D散点图(本例中为随机颜色)。添加颜色条的正确方法是什么,因为添加plt.colorbar()
或ax.colorbar()
似乎不起作用。
2条答案
按热度按时间q3aa05251#
这会产生一个颜色条(尽管可能不是您需要的颜色条):
替换此行:
与
然后使用
接近尾声
zvokhttg2#
使用上面的答案并没有解决我的问题。颜色条颜色Map图未链接到轴(另请注意颜色条限制不正确):
解决方案(参见here)是在
ax.scatter
中使用cmap
: