I have Z0 defined as the probability density function of a normal distribution.
I can plot the 2D contour
ax.contour(X,Y,Z0)
and I can plot it in 3D
surf = ax.plot_surface(X, Y, Z0, cmap=cm.coolwarm, linewidth=0, antialiased=False)
I tried adding both to the same axis, but the 2D is not showing (I guess because it is covered by the colour of the 3D graph).. How can I plot the 2D contour at z = -1, so that it is visible below the 3D figure, almost as a projection?
Thank you very much!