I have an Nx3 matrix in scipy/numpy and I'd like to make a 3 dimensional bar graph out of it, where the X and Y axes are determined by the values of first and second columns of the matrix, the height of each bar is the third column in the matrix, and the number of bars is determined by N.
Furthermore, I want to plot several groups of these matrices, each in a different color (a "grouped" 3D bar plot.)
When I try to plot it as follows:
ax.bar(data[:, 0], data[:, 1], zs=data[:, 2],
zdir='z', alpha=0.8, color=curr_color)
I get really weird bars -- as seen here: http://tinypic.com/r/anknzk/7
Any idea why the bars are so crooked and weirdly shaped? I just want one bar at the X-Y point, whose height is equal to the Z point.
thanks.
bar3dmethod: matplotlib.sourceforge.net/mpl_toolkits/mplot3d/… – Thomas K Mar 30 '11 at 17:32