本文簡要介紹
networkx.readwrite.sparse6.read_sparse6
的用法。用法:
read_sparse6(path)
從路徑中讀取 sparse6 格式的無向圖。
- path:文件或字符串
要寫入的文件或文件名。
- G:Graph/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)]
相關用法
- Python NetworkX read_shp用法及代碼示例
- Python NetworkX read_multiline_adjlist用法及代碼示例
- Python NetworkX read_weighted_edgelist用法及代碼示例
- Python NetworkX read_pajek用法及代碼示例
- Python NetworkX read_graph6用法及代碼示例
- Python NetworkX read_graphml用法及代碼示例
- Python NetworkX read_adjlist用法及代碼示例
- Python NetworkX read_gpickle用法及代碼示例
- Python NetworkX read_gml用法及代碼示例
- Python NetworkX read_edgelist用法及代碼示例
- Python NetworkX relaxed_caveman_graph用法及代碼示例
- Python NetworkX resource_allocation_index用法及代碼示例
- Python NetworkX reverse_view用法及代碼示例
- Python NetworkX recursive_simple_cycles用法及代碼示例
- Python NetworkX restricted_view用法及代碼示例
- Python NetworkX rescale_layout_dict用法及代碼示例
- Python NetworkX reverse_cuthill_mckee_ordering用法及代碼示例
- Python NetworkX relabel_nodes用法及代碼示例
- Python NetworkX random_partition_graph用法及代碼示例
- Python NetworkX random_shell_graph用法及代碼示例
- Python NetworkX random_degree_sequence_graph用法及代碼示例
- Python NetworkX random_geometric_graph用法及代碼示例
- Python NetworkX random_layout用法及代碼示例
- Python NetworkX ra_index_soundarajan_hopcroft用法及代碼示例
- Python NetworkX random_clustered_graph用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.readwrite.sparse6.read_sparse6。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。