import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 20]
fig = plt.figure()
fig.add_subplot(111)
plt.scatter(x, y)
plt.show()
找了很多文檔, 基本都是粘貼復制,沒幾個明確指出的,總結了一下:
這些是作為單個整數(shù)編碼的子繪圖網(wǎng)格參數(shù)。例如,“111”表示“1×1網(wǎng)格,第一子圖”,“234”表示“2×3網(wǎng)格,第四子圖”。
