Python 圖論工具

來源:互聯網
上載者:User

標籤:

networkx:

一個用Python語言開發的圖論與複雜網路建模工具,

內建了經常使用的圖與複雜網路分析演算法,

能夠方便的進行複雜網路資料分析、模擬建模等工作。


依賴工具:

numpy 

pyparsing 

datautil 

matplotlib 

networkx 


採用隨機圖做個實驗:

from random import random, choiceimport networkx as nximport matplotlib.pyplot as pltdef dist(a, b):    (x1, y1) = a    (x2, y2) = b    return ((x1 - x2) ** 2 + (y1 - y2) ** 2) ** 0.5G = nx.Graph()points = [(random(), random()) for _ in range( 8 )]for p1, p2 in zip(points[:-1], points[1:]):    G.add_edge(p1, p2, weight=dist(p1, p2))for _ in range( 8 ):    p1, p2 = choice(points), choice(points)    G.add_edge(p1, p2, weight=dist(p1, p2))    nx.draw(G)plt.savefig( 'asd.png' )plt.show()



全然圖做個實驗:

import networkx as nximport matplotlib.pyplot as pltG = nx.complete_graph(6)nx.draw(G)plt.savefig("asd.png")plt.show()



Python 圖論工具

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.