gpt4 book ai didi

python - 即使在 plt.plot 之前使用 plt.figure () 也会出现错误

转载 作者:太空宇宙 更新时间:2023-11-03 21:11:06 27 4
gpt4 key购买 nike

这是我的代码中出现错误的部分(都与图表相关,但要点:

plt.figure (figsize = (10,6))
plt.title ("Alfa x CL")
plt.plot (Alpha,CL, "b",linewidth = 2, label = "Xflr5")
plt.plot (alfa,cl, "r",linewidth = 2, label = "Experimental")
plt.legend (loc = 'upper left')
plt.grid (True)
plt.xlabel ("Alfa")
plt.ylabel ("Cl")
plt.savefig (grafico01) #grafico01 is a variable used before
plt.show ()

它显示消息

而不是图形(再次运行程序后,由于某种原因显示图形)

经过大量搜索后,我相信错误在于我放置函数的顺序,但我不知道哪个是正确的,我在这里找到的所有内容都是关于 plt.figure ()plt.plot ()之后(这里的情况并非如此)...订单有帮助吗?还是别的什么?

最佳答案

像已有的那样将变量放入绘图函数中。尝试使用ax直接在所需的轴上绘图。这是首选的做事方式:

import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(10,6))
ax.plot(range(0,10),range(10,0,-1), 'b',linewidth = 2, label = 'Xflr5')
ax.plot(range(0,10),[i*(i**(1/2)) for i in range(0,10)], 'r',linewidth = 2, label = 'Experimental')
ax.set_title('Alfa x CL')
ax.legend(loc='upper left')
ax.grid(True)
ax.set_xlabel ("Alfa")
ax.set_ylabel ("Cl")
plt.savefig ('grafico01.png') #grafico01 is a variable used before
plt.show ()

对于另一个数字,只需执行:

fig2, ax2 = plt.subplots(figsize=(10,6))
ax2.plot(range(0,10),range(10,0,-1), 'b',linewidth = 2, label = 'Xflr5')

就像以前一样。

enter image description here

关于python - 即使在 plt.plot 之前使用 plt.figure () 也会出现错误 <Figure size 1000x600 with 1 Axes>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55053886/

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