gpt4 book ai didi

python - 类型错误 : 'Figure' object is not iterable (itertools)

转载 作者:太空宇宙 更新时间:2023-11-03 15:42:28 26 4
gpt4 key购买 nike

import itertools

axs = plt.subplots(nrows=3, ncols=3, figsize=(15,15))

axs_list = list(itertools.chain.from_iterable(axs))
for ax in axs_list:

ax.plot(gen_stock_price_array2())

当我使用 itertools.chain.from_iterable 时,出现类型错误。我已经搜索过谷歌,但找不到答案。我想知道其他人是否也有同样的问题,对我来说,这有点奇怪。

类型错误图片: enter image description here

最佳答案

plt.subplots(nrows=3, ncols=3, figsize=(15,15)) 返回一个双元素元组:第一个元素是 Figure,第二个元素是轴。

您可能需要以下内容:

fig, axes = plt.subplots(nrows=3, ncols=3, figsize=(15,15))

for ax in axes.flat:
ax.plot(gen_stock_price_array2())

我希望这能起到一定的作用。

关于python - 类型错误 : 'Figure' object is not iterable (itertools),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51795521/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com