建立軸

在 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