7
Matplotlib'de, fig.add_subplot (111) 'deki argüman ne anlama geliyor?
Bazen böyle bir kod rastlamak: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] fig = plt.figure() fig.add_subplot(111) plt.scatter(x, y) plt.show() Hangi üretir: Ben deli gibi belgeleri okuyordum ama için bir açıklama bulamıyorum 111. bazen a 212. Anlam argümanı ne anlama …
472
python
matplotlib
figure