2012-04-07 76 views
0

我有一個python腳本,給了我2個列表和另一個誰是參考(時間)。 我該如何創建一個圖形,其中包含我的第一個列表。第二個列表的同一個問題。我需要他們在同一張圖片上。Gnuplot python與2列表

list1的[12,15,17,19]

list2中[34,78,54,67]

項目list3 [10,20,30,40](以分鐘爲單位的時間)

如何用這些列表創建png格式的圖形?

感謝

+1

也許你應該在網絡上搜索「Python的陰謀」之類的第一,然後回來,如果你有一個具體的問題。 – 2012-04-07 11:29:24

回答

1

首先你需要這個包http://gnuplot-py.sourceforge.net/,然後運行這些代碼:

import Gnuplot 
g=Gnuplot.Gnuplot() 
y1= [12, 15, 17, 19] 
y2= [34, 78, 54, 67] 
x= [10, 20, 30, 40] 
d1=Gnuplot.Data(x,y1,with_="line") 
d2=Gnuplot.Data(x,y2,with_="line") 
#g.plot(d1,d2) #uncomment this line if you want to see the gnuplot window 
g.hardcopy('filename.png',terminal = 'png') 
+0

完美。感謝Bigeagle :) – Matt 2012-04-07 17:18:06