问题:
在pycharm中,图片不能显示,代码如下:
import matplotlib.pyplot as plt
fig=plt.figure()
ax1=fig.add_subplot(2,2,1)
结果显示:
Figure(640*480)
处理方法:
只需要加上'plt.show'就可以了
print(plt.show(ax1))
问题:
在pycharm中,图片不能显示,代码如下:
import matplotlib.pyplot as plt
fig=plt.figure()
ax1=fig.add_subplot(2,2,1)
结果显示:
Figure(640*480)
处理方法:
只需要加上'plt.show'就可以了
print(plt.show(ax1))