本文簡要介紹
networkx.DiGraph.to_directed
的用法。用法:
DiGraph.to_directed(as_view=False)
返回圖的有向表示。
- G:DiGraph
具有相同名稱、相同節點且每條邊 (u, v, data) 由兩條有向邊 (u, v, data) 和 (v, u, data) 替換的有向圖。
返回:
注意:
這將返回嘗試完全複製所有數據和引用的邊、節點和圖形屬性的“deepcopy”。
這與返回數據的淺拷貝的類似 D=DiGraph(G) 形成對比。
有關淺拷貝和深拷貝的更多信息,請參閱 Python 拷貝模塊 https://docs.python.org/3/library/copy.html 。
警告:如果您將 Graph 子類化以在數據結構中使用 dict-like 對象,則這些更改不會轉移到此方法創建的 DiGraph。
例子:
>>> G = nx.Graph() # or MultiGraph, etc >>> G.add_edge(0, 1) >>> H = G.to_directed() >>> list(H.edges) [(0, 1), (1, 0)]
如果已指示,則返回(深度)副本
>>> G = nx.DiGraph() # or MultiDiGraph, etc >>> G.add_edge(0, 1) >>> H = G.to_directed() >>> list(H.edges) [(0, 1)]
相關用法
- Python NetworkX DiGraph.to_undirected用法及代碼示例
- Python NetworkX DiGraph.__contains__用法及代碼示例
- Python NetworkX DiGraph.in_degree用法及代碼示例
- Python NetworkX DiGraph.out_degree用法及代碼示例
- Python NetworkX DiGraph.add_edges_from用法及代碼示例
- Python NetworkX DiGraph.edge_subgraph用法及代碼示例
- Python NetworkX DiGraph.adjacency用法及代碼示例
- Python NetworkX DiGraph.remove_nodes_from用法及代碼示例
- Python NetworkX DiGraph.has_edge用法及代碼示例
- Python NetworkX DiGraph.out_edges用法及代碼示例
- Python NetworkX DiGraph.add_weighted_edges_from用法及代碼示例
- Python NetworkX DiGraph.__iter__用法及代碼示例
- Python NetworkX DiGraph.number_of_nodes用法及代碼示例
- Python NetworkX DiGraph.has_node用法及代碼示例
- Python NetworkX DiGraph.size用法及代碼示例
- Python NetworkX DiGraph.add_edge用法及代碼示例
- Python NetworkX DiGraph.get_edge_data用法及代碼示例
- Python NetworkX DiGraph.clear用法及代碼示例
- Python NetworkX DiGraph.copy用法及代碼示例
- Python NetworkX DiGraph.remove_node用法及代碼示例
- Python NetworkX DiGraph.add_node用法及代碼示例
- Python NetworkX DiGraph.subgraph用法及代碼示例
- Python NetworkX DiGraph.degree用法及代碼示例
- Python NetworkX DiGraph.__len__用法及代碼示例
- Python NetworkX DiGraph.__init__用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.DiGraph.to_directed。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。