Matplotlib Pyplot

Pyplot

大多数 Matplotlib 绘图功能位于 pyplot 子模块下,通常以 plt 的别名导入:

  1. import matplotlib.pyplot as plt

现在,Pyplot 包可以称为 plt

实例

在图表中从位置(0,0)到位置(6,250)绘制一条线:

  1. import sys
  2. import matplotlib
  3. matplotlib.use('Agg')
  4. import matplotlib.pyplot as plt
  5. import numpy as np
  6. xpoints = np.array([0, 6])
  7. ypoints = np.array([0, 250])
  8. plt.plot(xpoints, ypoints)
  9. plt.show()
  10. plt.savefig(sys.stdout.buffer)
  11. sys.stdout.flush()
结果:

在接下来的章节中,您将了解有关绘制(绘图)的更多知识。