导入 matplotlib 和 matplotlib.pyplot 有什么区别?

matplotlibpythondata visualization

导入 matplotlib 时,我们会导入其所有库,而导入 ma​​tplotlib.pyplot 只会导入 pyplot 的属性。

步骤

  • ma​​tplotlib.pyplot 导入为 plt

  • 设置图形大小并调整子图之间和周围的填充。

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

  • 使用 plot() 方法绘制 x 和 y 数据点。

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

示例

import numpy as np
import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

x = np.random.rand(10)
y = np.random.rand(10)

plt.plot(x, y)

plt.show()

输出


相关文章