我有一个这样的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
中检索z
,artist
和_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。