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


Python NetworkX node_attribute_xy用法及代碼示例


本文簡要介紹 networkx.algorithms.assortativity.node_attribute_xy 的用法。

用法:

node_attribute_xy(G, attribute, nodes=None)

返回 G 中所有邊的 node-attribute 對的迭代器。

參數

G: NetworkX graph
attribute: key

節點屬性鍵。

nodes: list or iterable (optional)

僅使用與指定節點相關的邊。默認為所有節點。

返回

(x, y):2 元組

生成(屬性,屬性)值的 2 元組。

注意

對於無向圖,每條邊產生兩次,每個邊表示 (u, v) 和 (v, u) 產生一次,但自循環邊除外,它隻出現一次。

例子

>>> G = nx.DiGraph()
>>> G.add_node(1, color="red")
>>> G.add_node(2, color="blue")
>>> G.add_edge(1, 2)
>>> list(nx.node_attribute_xy(G, "color"))
[('red', 'blue')]

相關用法


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