我有一个用 gnuplot 生成图形的 python 脚本。但我有一个错误:
gnuplot> plot ^ line 0:绘制预期的函数
g=Gnuplot.Gnuplot(persist=1)
g.title('Read&Write Performance')
g.xlabel('minutes')
g.ylabel('MB/s')
g('set term png')
g('set out')
g('set yrange [0:70]')
d1=Gnuplot.Data(self.time,self.list1,title="perfr", with_="line")
d2=Gnuplot.Data(self.time,self.list2,title="perfw", with_="line")
time.sleep(2)
g.hardcopy('bench.png',terminal = 'png')
g.reset()
self.list1= [12, 15, 17] self.list2 = [43, 48, 49]
我不明白为什么我有这个错误。
谢谢 :)