填充等高线#

Axes3D.contourfAxes3D.contour 的区别在于它创建填充的等高线,即使用离散数量的颜色来着色域。

这类似于 2D 中的 Axes.contourf 图,只是在 z=c 平面上绘制了对应于级别 c 的阴影区域。

import matplotlib.pyplot as plt

from matplotlib import cm
from mpl_toolkits.mplot3d import axes3d

ax = plt.figure().add_subplot(projection='3d')
X, Y, Z = axes3d.get_test_data(0.05)
ax.contourf(X, Y, Z, cmap=cm.coolwarm)

plt.show()
contourf3d

标签:plot-type: 3D level: beginner

由 Sphinx-Gallery 生成的图库