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


Python NetworkX write_sparse6用法及代碼示例


本文簡要介紹 networkx.readwrite.sparse6.write_sparse6 的用法。

用法:

write_sparse6(G, path, nodes=None, header=True)

將圖 G 以 sparse6 格式寫入給定路徑。

參數

G圖(無向)
path文件或字符串

要寫入的文件或文件名

nodes: list or iterable

節點按提供的順序標記為 0…n-1。如果沒有,則使用 G.nodes() 給出的順序。

header: bool

如果為真,則將“>>sparse6<<”字符串添加到數據頭

拋出

NetworkXError

如果圖是有向的

注意

該格式不支持邊或節點標簽。

參考

1

Sparse6 specification <http://users.cecs.anu.edu.au/~bdm/data/formats.html>

例子

您可以通過提供文件的路徑來編寫 sparse6 文件:

>>> import tempfile
>>> with tempfile.NamedTemporaryFile() as f:
...     nx.write_sparse6(nx.path_graph(2), f.name)
...     print(f.read())
b'>>sparse6<<:An\n'

您還可以通過提供一個打開的 file-like 對象來編寫一個 sparse6 文件:

>>> with tempfile.NamedTemporaryFile() as f:
...     nx.write_sparse6(nx.path_graph(2), f)
...     _ = f.seek(0)
...     print(f.read())
b'>>sparse6<<:An\n'

相關用法


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