I have a collection of Nx3 matrices in scipy/numpy and I\'d like to make a 3 dimensional scatter of it, where the X and Y axes are determined by the values of first and second c
Setting the kwarg depthshade=False fixed it for me:
ax.scatter(np.log2(data[:, 0]), np.log2(data[:, 1]), np.log2(data[:, 2]), 'o', c=curr_color, label=my_labels[index], depthshade=False)