用gnuplot python绘制线条

时间:2011-07-31 09:22:28

标签: python gnuplot

我有一个清单:

x = [1,2,3,4]

现在使用gnuplot,我将点绘制为(0,1), (1,2), ...

以下是我使用的语法:

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

现在我有了我所需要的一组积分,但我想通过一条线加入这些积分。我该怎么做?

1 个答案:

答案 0 :(得分:3)

以下是否适用于您?

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

您可以在第5个命令中传递您想要的任何选项。