7
Dalam Matplotlib, apa arti argumen di fig.add_subplot (111)?
Terkadang saya menemukan kode seperti ini: 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() Yang menghasilkan: Saya sudah membaca dokumentasi seperti gila tapi saya tidak dapat menemukan penjelasan untuk 111. terkadang saya melihat …
472
python
matplotlib
figure