chenjl1972 发表于 2021-1-18 11:25:22

matplotlib.pyplot统计图显示正确,但保存后是空的

plt.figure(figsize=(20, 10))         ##新建figure并指定尺寸
plt.plot(x,y1,label='confirm_No')
plt.plot(x,y2,label='suspect_No')
plt.plot(x,y3,label='dead_No')
plt.plot(x,y4,label='heal_No')


plt.xlabel('Date')      ##添加标签
plt.ylabel('Number of newly confirmed cases')
plt.gca().xaxis.set_major_locator(ticker.MultipleLocator(3)) ##横坐标日期每三个显示一个
plt.legend()         ##添加图例
plt.show()
plt.savefig(r'C:\Users\Administrator\Desktop\covid-191.jpg')

plt.show() 显示的图是正确的,但 plt.savefig(r'C:\Users\Administrator\Desktop\covid-191.jpg')或者plt.savefig(r'C:\Users\Administrator\Desktop\covid-191.png')
后,打开文件都是空白图

请问,这是为什么呢?怎样解决呢

suchocolate 发表于 2021-1-18 13:03:54

代码发全

bonst 发表于 2021-1-18 13:42:58

把plt.savefig()放在plt.show()的前面

chenjl1972 发表于 2021-1-18 16:08:45

bonst 发表于 2021-1-18 13:42
把plt.savefig()放在plt.show()的前面

佩服,佩服
页: [1]
查看完整版本: matplotlib.pyplot统计图显示正确,但保存后是空的