2013-05-07 62 views
1

我有這樣一些數據:爲什麼我畫圖遇到除零誤差?

4556 5092 0.7000 
4556 4785 0.7500 
4556 5397 0.7000 
4556 5139 0.7500 
4556 5937 0.8333 
4556 6220 0.7000 
4556 5139 0.7500 
4556 6220 0.7063 
4559 4563 0.7500 
4559 4770 0.7500 
4559 4837 0.7500 
4559 5640 0.7500 
4559 4563 0.7500 
4559 4770 0.7500 
4559 4837 0.7500 
4559 5640 0.7500 
4561 4607 1.0000 
4561 4600 0.7500 
4561 4562 0.7500 
4561 5090 0.7500 
4561 5197 1.0000 
4561 5182 0.7500 
4561 5937 0.7500 
4561 6143 0.7500 
4561 5632 1.0000 
4561 5870 1.0000 
4561 6220 0.6756 
4561 6143 0.7500 
4561 6220 0.6750 
4562 4607 0.7500 
4562 5197 0.7500 
4562 5632 0.7500 
4562 5870 0.7500 
4562 6220 0.6656 
4564 4837 0.7500 
4564 4837 0.7500 
4566 5805 0.8750 
4566 5981 0.6729 
4571 4919 0.7000 
4571 6004 0.7500 
4571 6089 0.7000 
4571 6044 0.7500 
4571 6041 0.7000 
4571 5863 0.7500 
4571 6089 0.6398 

前兩個科拉姆是節點,而第三個是邊緣的長度。

我的代碼是:

import matplotlib.pyplot as plt 
import networkx as nx 
G=nx.Graph() 
filedata = file("1.txt") 
for line in filedata: 
    datas = line.split() 
    G.add_edge(datas[0],datas[1],length=datas[2]) 

#nx.draw(G,with_lables=False,node_size=100) 
nx.draw(G,with_lables=False,node_size=100) 
plt.savefig("data.png") 
#plt.show() 

但我encouter:

/usr/local/lib/python2.7/dist-packages/networkx-1.7-py2.7.egg/networkx/drawing/layout.py:514: RuntimeWarning: divide by zero encountered in int_scalars 
    pos[:,i]*=scale/lim 

有什麼錯networkx?

+5

我沒有使用任何你正在使用的庫,但我能想到的第一件事是數據[2]可能被鑄造成一個int,這將使其成爲0.嘗試顯式地將其轉換爲浮點數。 – pypat 2013-05-07 08:04:44

+0

你確定數據[0],數據[1]和數據[2]確實包含浮點數嗎?而不是字符串? – 2013-05-07 08:55:07

+0

https://groups.google.com/forum/?fromgroups=#!topic/networkx-discuss/DvwOq62sUnk這是因爲networkx – young001 2013-05-07 09:04:51

回答

1

我沒有在我的系統上得到任何錯誤。但經常遇到這個問題。在此警告之後,networkx在繪圖中心繪製一條粗黑線並保存。我升級到了Networkx 1.8,到目前爲止還沒有遇到這個錯誤。