1. 程式人生 > >子圖繪製方法彙總

子圖繪製方法彙總

import matplotlib.pyplot as plt

一:

plt.subplot(nrow, ncol, x)

e.g. 

plt.subplot(2,2,1)或plt.subplot(221)

二:

fig = plt.figure()

plt.add_subplot(nrow, ncol,x)

相對於上一種方法,此種方法可以引入變數,比如要繪製四個子圖:

for i in range(4):
    fig.add_subplot(4,1,i+1)