如何利用 Python Matplotlib 绘制 3D 图形?


要使用 Python 绘制 3D 图形,我们可以按照以下步骤操作 -

  • 使用 figure() 方法创建一个新图形或激活现有图形。

  • 获取 3D 坐标轴对象。

  • 为数据点创建 x、y 和 z 列表。

  • 使用scatter3D() 方法添加 3D 散点,并使用markersize=150marker=diamond 添加 x、y 和 z 数据点。

  • 要显示图形,请使用 show() 方法。

示例

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = Axes3D(fig)
x = [2, 4, 6, 3, 1]
y = [1, 6, 8, 1, 3]
z = [3, 4, 10, 3, 1]
ax.scatter3D(x, y, z, c=z, alpha=1, marker='d', s=150)
plt.show()

输出

更新日期: 12-May-2021

2K+ 浏览量

开启您的 职业生涯

完成课程即可获得认证

开始
广告