Python:将绘图保存到图像文件并使用Matplotlib

时间:2016-11-30 13:16:41

标签: python image matplotlib

我正在使用python脚本绘制我用RaPi监控的电压。相关代码如下所示:

while True:
    y=readChannel(0)
    plt.axis([0, 100, -10, 10])
    plt.ion()                      #plot interactively
    plt.scatter(x, y)
    plt.pause(0.05)              #for the plot not to freeze
    time.sleep(1)
    x += 1

实时绘图工作正常,但我也希望程序能够保存我偶尔会看到的图表。我已经尝试过plt.savefig()命令但是我的实时情节不会运行。有谁知道怎么做?

任何建议都会被赞赏=)

此致 史蒂夫

1 个答案:

答案 0 :(得分:0)

show功能也会重置情节。在savefig之前调用show