10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This simple example, should create an image with a single red circle
import matplotlib.pyplot as ploty from mpl_toolkits.mplot3d import Axes3D ploty.ion() fig = ploty.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(0,0,0,color='red')
But this is what I get
Is this a bug?
Thanks.