重叠3d Matplotlib图中的热图

时间:2012-12-21 12:16:39

标签: 3d matplotlib plot heatmap

我是matplotlib的新手,我不知道在哪里寻找......

我想绘制数据,其中X和Y是问题的参数,然后Z显示该问题与该参数的解决时间。但是在情节表面中,我想用热图显示问题的硬度或令人满意。

有没有办法做到这一点?

谢谢!

1 个答案:

答案 0 :(得分:1)

取自matplotlib examples

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.ticker import LinearLocator
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.gca(projection='3d')
X = np.arange(-5, 5, 0.25)
xlen = len(X)
Y = np.arange(-5, 5, 0.25)
ylen = len(Y)
X, Y = np.meshgrid(X, Y)
R = np.sqrt(X**2 + Y**2)
Z = np.sin(R)

colortuple = ('y', 'b')
colors = np.empty(X.shape, dtype=str)
for y in range(ylen):
    for x in range(xlen):
        colors[x, y] = colortuple[(x + y) % len(colortuple)]

surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, facecolors=colors,
        linewidth=0, antialiased=False)

ax.set_zlim3d(-1, 1)

ax.w_zaxis.set_major_locator(LinearLocator(6))

plt.show()

您可以将颜色传递到三维曲面图。