I am currently trying to plot a 3D scatter plot by using a 3D array.
What I found online about plotting 3D scatter plot looks something like
ax.scatter3D(x, y, z) where x, y , z are all 1D array.
However, in my case, I am generating an array of shapes(3, 3, 3) by using numpy's histogramdd.
In [61]: h, edges = histogramdd(array([[1,2,4],[4,2,8],[3,2,1],[2,1,2],[2,1,3],[2,1,1],[2,1,4]]),bins=3)
In [64]: h
Out[64]:
array([[[ 0., 0., 0.],
[ 0., 0., 0.],
[ 0., 1., 0.]],
[[ 3., 1., 0.],
[ 0., 0., 0.],
[ 0., 0., 0.]],
[[ 0., 0., 0.],
[ 0., 0., 0.],
[ 1., 0., 1.]]])
My question is, how can I unpack this (3, 3, 3) into 1-dimensional arrays that correspond to the axes so that I can plot 3d scatter plot?
