I'm trying to draw a 3d figure but i get this error(it's not the complete code)
...
...
X = pca1.transform(d1)
fig2 = plot.figure(1,figsize=(10,6))
ax = fig2.gca(projection = '3d')
ax.scatter(X[:,0],X[:,1],X[:,2])
X.show()
Calling x.show()
'numpy.ndarray' object has no attribute 'show'
How can I draw it?
plot.show()?