Matplotlib 3D散点图没有facecolor

时间:2015-01-17 16:54:10

标签: python matplotlib scatter mplot3d

我一直在努力寻找如何在matplotlib中制作三维散点图,只有标记edgecolor而没有标记facecolor。类似空心标记的东西,就像matlab一样。

解释性图片: http://i.stack.imgur.com/LnnOa.jpg

到目前为止,我所能做的就是这样: http://ceng.mugla.edu.tr/sharedoc/python-matplotlib-doc-1.0.1/html/_images/scatter3d_demo.png

根据我必须可视化的样本数量,这远非理想。

有人设法做到了吗?

1 个答案:

答案 0 :(得分:0)

您可以单独设置edgecolorfacecolor,如下所示:

enter image description here

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)
    ax.scatter(xs, ys, zs, facecolor=(0,0,0,0), s=100, marker=m, edgecolor=c)

ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')

plt.show()

有多种方法可以将面部颜色设置为透明,请参阅here