当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX read_sparse6用法及代码示例


本文简要介绍 networkx.readwrite.sparse6.read_sparse6 的用法。

用法:

read_sparse6(path)

从路径中读取 sparse6 格式的无向图。

参数

path文件或字符串

要写入的文件或文件名。

返回

GGraph/Multigraph 或 Graphs/MultiGraphs 列表

如果文件包含多行,则返回图表列表

抛出

NetworkXError

如果字符串无法解析为 sparse6 格式

参考

1

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

例子

您可以通过提供文件的路径来读取 sparse6 文件:

>>> import tempfile
>>> with tempfile.NamedTemporaryFile() as f:
...     _ = f.write(b">>sparse6<<:An\n")
...     _ = f.seek(0)
...     G = nx.read_sparse6(f.name)
>>> list(G.edges())
[(0, 1)]

您还可以通过提供打开的file-like 对象来读取 sparse6 文件:

>>> import tempfile
>>> with tempfile.NamedTemporaryFile() as f:
...     _ = f.write(b">>sparse6<<:An\n")
...     _ = f.seek(0)
...     G = nx.read_sparse6(f)
>>> list(G.edges())
[(0, 1)]

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.readwrite.sparse6.read_sparse6。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。