创建轴
在 matplotlib 中创建轴有两种主要方法:使用 pyplot 或使用面向对象的 API。
使用 pyplot:
import matplotlib.pyplot as plt
ax = plt.subplot(3, 2, 1) # 3 rows, 2 columns, the first subplot
使用面向对象的 API:
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(3, 2, 1)
便利功能 plt.subplots()
可用于在一个命令中生成子图的图形和集合:
import matplotlib.pyplot as plt
fig, (ax1, ax2) = plt.subplots(ncols=2, nrows=1) # 1 row, 2 columns