I'm kinda new to python..
I have a dataframe on which if I call df.hist() it would result in this following pictures.

I would like to plot these histogram in 3d.Does anyone has a suggestion on plotting several histogram in jupyter notebook on 3d Axes?
I've tried this code but it does not generate the bar graph as I would like it to be..

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
nbins = 5
for c in MCC_Dataframe.columns:
ax.hist( x=c, alpha=0.8, density=True)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
plt.show()
My dataframe look like this
I would like to plot the distribution for each column..
Anyone has a suggestion? Thank you! Thank you in advance!
