Matplotlib:从3D散点图检索rgba

时间:2018-10-24 16:08:58

标签: python python-3.x matplotlib scatter-plot scatter3d

我有一个这样的3D散点图:

import numpy as np
from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

x = np.random.random(10)
y = np.random.random(10)
z = np.random.random(10)
rgba = np.random.random((10, 4))

fig = plt.figure()
ax = fig.gca(projection='3d')
artist = ax.scatter(x, y, z, c=rgba)

如所示的here,我可以使用x属性从散点图y中检索zartist_offsets3d数据:

x2, y2, z2 = artist._offsets3d
print(all(x == x2))  # True
print(all(y == y2))  # True
print(all(z == z2))  # True

我寻求一种类似的方法来从rgba取回artist数据。我实际上只需要alpha值,但是我猜颜色和alpha仍然存储在一起。

如果有问题,我会使用matplotlib 3.0.0。

0 个答案:

没有答案