當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python NetworkX node_link_graph用法及代碼示例


本文簡要介紹 networkx.readwrite.json_graph.node_link_graph 的用法。

從 node-link 數據格式返回圖形。

參數

datadict

node-link 格式化圖形數據

directedbool

如果為 True,並且數據中未指定方向,則返回有向圖。

multigraphbool

如果為 True,並且未在數據中指定多重圖,則返回多重圖。

attrsdict

包含五個鍵‘source’, ‘target’, ‘name’, ‘key’和‘link’的字典。相應的值提供用於存儲NetworkX-internal圖形數據的屬性名稱。默認值:

dict(source='source', target='target', name='id',

鍵='鍵',鏈接='鏈接')

返回

GNetworkX 圖

NetworkX 圖形對象

注意

屬性‘key’ 僅用於多重圖。

例子

>>> from networkx.readwrite import json_graph
>>> G = nx.Graph([("A", "B")])
>>> data = json_graph.node_link_data(G)
>>> H = json_graph.node_link_graph(data)

相關用法


注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.readwrite.json_graph.node_link_graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。