Matplotlib 是一个 Python 的 2D绘图库,它以各种硬拷贝格式和跨平台的交互式环境生成出版质量级别的图形 。
通过 Matplotlib,开发者可以仅需要几行代码,便可以生成绘图,直方图,功率谱,条形图,错误图,散点图等。
# 11.1 Plotting a function
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import math
# Data for plotting
x = np.arange(0.0, 2.0, 0.01)
y = (np.sin(x-2)**2)*(math.e**(-x**2))
# Note that using plt.subplots below is equivalent to using
# fig