I have a dataframe df
grouped like this:
Year Product Sales
2010 A 111
B 20
C 150
2011 A 10
B 28
C 190
… …
and I would like to plot this in matplotlib
as 3d Chart having the Year
as the x-axis, Sales
on the y-axis and Product
on the z-axis.
I have been trying the following:
from mpl_toolkits.mplot3d import axes3d
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
X = dfgrouped['Year']
Y = dfgrouped['Sales']
Z = dfgrouped['Product']
ax.bar(X, Y, Z, color=cs, alpha=0.8)
unfortunately I am getting
"ValueError: incompatible sizes: argument 'height' must be length 7 or scalar"
You could plot a 3D Bar graph using
Pandas
as shown:Setup:
Data Wrangling:
Grouping similar entries (get_group) occuring in the Sales column and iterating through them and later appending them to a
list
. This gets stacked horizontally usingnp.hstack
which forms thez
dimension of the 3d plot.Letting the labels on both the x and y dimensions take unique values of the respective levels of the Multi-Index Dataframe. The x and y dimensions then take the range of these values.
Returning coordinate matrices from coordinate vectors using
np.meshgrid
3-D plotting:
Note:
Incase of unbalanced
groupby
objects, you could still do it byunstacking
and fillingNans
with 0's and thenstacking
it back as follows:where
df_multi_index.unstack
is your original multi-index dataframe.For the new values added to the Multi-index Dataframe, following plot is obtained: