2011-07-31 116 views
2

我有一個列表:與gnuplot的蟒蛇繪製線條

x = [1,2,3,4] 

現在使用的gnuplot,我已經繪製的點作爲(0,1), (1,2), ...

這裏是我使用的語法:

g = Gnuplot.Gnuplot() 
g.plot(x) 

現在我有我需要的一些要點,但我想通過一行來加入這些要點。我怎麼做?

回答

3

以下是否適合您?

>>> import Gnuplot 
>>> x = [1,2,3,4] 
>>> gp = Gnuplot.Gnuplot() 
>>> gp.title('My title') 
>>> gp('set style data linespoints') 
>>> gp.plot(x) 

你可以在第5個命令中傳遞你想要的任何選項。

+0

啊是的,謝謝你! – amitash