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


当我们导入 matplotlib 时,即导入了它所有的库,而导入 matplotlib.pyplot 仅导入了 pyplot 的属性。

步骤

  • matplotlib.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()

输出

更新时间: 10-8-2021

1K+ 次浏览

Kickstart Your事业

完成课程,获得认证

开始
广告