如何在Matplotlib的3D坐标系上绘制一个点?
为了在Matplotlib的3D坐标系上绘制一个点,我们可以按照以下步骤进行 –
- 设置图形大小以及调整子图之间和周围的填充。
-
使用 figure() 方法创建一个新图形或激活现有图形。
-
将一个带有3d投影的坐标系添加到图中作为子图的一部分。
-
使用 scatter() 方法在3D坐标系中绘制一个点。
-
使用 show() 方法来显示图形。
例子
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(2, 3, 4, c='red', marker='*', s=1000)
plt.show()