Ada beberapa cara untuk melakukannya. The subplots
Metode menciptakan sosok bersama dengan subplot yang kemudian disimpan dalam ax
array yang. Sebagai contoh:
import matplotlib.pyplot as plt
x = range(10)
y = range(10)
fig, ax = plt.subplots(nrows=2, ncols=2)
for row in ax:
for col in row:
col.plot(x, y)
plt.show()
Namun, sesuatu seperti ini juga akan berfungsi, itu tidak begitu "bersih" karena Anda membuat gambar dengan subplot dan kemudian menambahkan di atasnya:
fig = plt.figure()
plt.subplot(2, 2, 1)
plt.plot(x, y)
plt.subplot(2, 2, 2)
plt.plot(x, y)
plt.subplot(2, 2, 3)
plt.plot(x, y)
plt.subplot(2, 2, 4)
plt.plot(x, y)
plt.show()