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]
なぜこのエラーが発生したのかわかりません。
ありがとう :)