Berkai (myFigure,myAxes) = plt.subplot() Arkadaşlar yukarıdaki basit kodu yazdığımda aşağıdaki gibi bir hata alıyorum yardımcı olur musunuz? "TypeError: 'AxesSubplot' object is not iterable"
Halil Han BADEM Berkai plt.subplot içerisine değer ataman gerekecek. fig, [ax] = plt.subplots(1, 1,figsize=(1,1)) (Alıntı) gibi. İkisini de belirtmeniz gerekecek >>> plt.subplots (2, 1, figsize = (8,6)) veya >>> plt.subplots (1, 2, figsize = (8,6)) Aksi takdirde, yalnızca bir Eksen iade edilir ve üzerinde yinelenebilir bir şekilde açmaya çalışıyorsunuz, bu işe yaramaz. Kaynak: https://stackoverflow.com/a/49246761