Python& Matplotlib:如何创建彩色密度图?

时间:2015-09-08 08:09:24

标签: python matplotlib seaborn

我可以用3d创建概率密度图

surf = ax.plot_surface(
    X, Y, Z.T, rstride=1, cstride=1,
    facecolors=cm.jet(N),
    linewidth=0, antialiased=False, shade=False)

此处,x y是坐标,z是概率密度的值(即z = f(x,y))。这将呈现如下情节:

enter image description here

但是,我想在面板中看一下,绘制如下内容: enter image description here

我该怎么做?

0 个答案:

没有答案