如何使用 Matplotlib 制作任意数据 4D 图?

matplotlibpythondata visualization

要制作 4D 图,我们可以创建 x、y、z 和 c 标准数据点。创建一个新图形或激活现有图形。

步骤

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

  • 添加图形作为子图排列的一部分。

  • 使用 numpy 创建 x、y、z 和 c 数据点。

  • 使用 scatter  方法创建散点图。

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

示例

from matplotlib import pyplot as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
x = np.random.standard_normal(100)
y = np.random.standard_normal(100)
z = np.random.standard_normal(100)
c = np.random.standard_normal(100)
img = ax.scatter(x, y, z, c=c, cmap='YlOrRd', alpha=1)
plt.show()

输出


相关文章