本文簡要介紹
networkx.readwrite.sparse6.to_sparse6_bytes
的用法。用法:
to_sparse6_bytes(G, nodes=None, header=True)
將無向圖轉換為 sparse6 格式的字節。
- G:圖(無向)
- nodes: list or iterable:
節點按提供的順序標記為 0…n-1。如果沒有,則使用
G.nodes()
給出的順序。- header: bool:
如果為真,則將“>>sparse6<<”字節添加到數據頭。
- NetworkXNotImplemented
如果圖形是有向的。
- ValueError
如果圖至少有
2 ** 36
個節點; sparse6 格式僅適用於順序小於2 ** 36
的圖。
參數:
拋出:
注意:
返回的字節以換行符結尾。
該格式不支持邊或節點標簽。
參考:
- 1
Graph6 specification <http://users.cecs.anu.edu.au/~bdm/data/formats.html>
例子:
>>> nx.to_sparse6_bytes(nx.path_graph(2)) b'>>sparse6<<:An\n'
相關用法
- Python NetworkX to_scipy_sparse_array用法及代碼示例
- Python NetworkX to_scipy_sparse_matrix用法及代碼示例
- Python NetworkX to_prufer_sequence用法及代碼示例
- Python NetworkX to_numpy_recarray用法及代碼示例
- Python NetworkX to_dict_of_dicts用法及代碼示例
- Python NetworkX to_pydot用法及代碼示例
- Python NetworkX to_vertex_cover用法及代碼示例
- Python NetworkX to_numpy_matrix用法及代碼示例
- Python NetworkX to_graph6_bytes用法及代碼示例
- Python NetworkX to_pandas_adjacency用法及代碼示例
- Python NetworkX to_nested_tuple用法及代碼示例
- Python NetworkX to_networkx_graph用法及代碼示例
- Python NetworkX to_numpy_array用法及代碼示例
- Python NetworkX to_agraph用法及代碼示例
- Python NetworkX to_pandas_edgelist用法及代碼示例
- Python NetworkX topological_generations用法及代碼示例
- Python NetworkX topological_sort用法及代碼示例
- Python NetworkX transitive_closure_dag用法及代碼示例
- Python NetworkX tree_graph用法及代碼示例
- Python NetworkX threshold_accepting_tsp用法及代碼示例
- Python NetworkX tensor_product用法及代碼示例
- Python NetworkX transitivity用法及代碼示例
- Python NetworkX triangles用法及代碼示例
- Python NetworkX triad_graph用法及代碼示例
- Python NetworkX transitive_closure用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.readwrite.sparse6.to_sparse6_bytes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。