Bunu yapmanın birkaç yolu var. subplots
Yöntem, daha sonra saklanır subplots ile birlikte şekil oluşturur ax
dizisi. Örneğin:
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()
Bununla birlikte, bunun gibi bir şey de işe yarayacaktır, ancak alt grafiklerle bir figür oluşturduğunuz ve ardından bunların üstüne eklediğiniz için o kadar "temiz" değildir:
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()