本文简要介绍
networkx.convert_matrix.from_pandas_adjacency
的用法。用法:
from_pandas_adjacency(df, create_using=None)
从 Pandas DataFrame 返回图表。
Pandas DataFrame 被解释为图的邻接矩阵。
- df: Pandas DataFrame
图的邻接矩阵表示
- create_using:NetworkX 图形构造函数,可选(默认=nx.Graph)
要创建的图表类型。如果是图形实例,则在填充之前清除。
参数:
注意:
对于有向图,明确提及create_using=nx.DiGraph,并且df的条目i,j对应于从i到j的一条边。
如果
df
对每个条目都有一个数据类型,它将被转换为适当的 Python 数据类型。如果
df
具有用户指定的复合数据类型,则数据字段的名称将用作生成的 NetworkX 图形中的属性键。例子:
边上的简单整数权重:
>>> import pandas as pd >>> pd.options.display.max_columns = 20 >>> df = pd.DataFrame([[1, 1], [2, 1]]) >>> df 0 1 0 1 1 1 2 1 >>> G = nx.from_pandas_adjacency(df) >>> G.name = "Graph from pandas adjacency matrix" >>> print(nx.info(G)) Graph named 'Graph from pandas adjacency matrix' with 2 nodes and 3 edges
相关用法
- Python NetworkX from_pandas_edgelist用法及代码示例
- Python NetworkX from_pydot用法及代码示例
- Python NetworkX from_prufer_sequence用法及代码示例
- Python NetworkX from_dict_of_dicts用法及代码示例
- Python NetworkX from_scipy_sparse_array用法及代码示例
- Python NetworkX from_scipy_sparse_matrix用法及代码示例
- Python NetworkX from_dict_of_lists用法及代码示例
- Python NetworkX from_edgelist用法及代码示例
- Python NetworkX from_nested_tuple用法及代码示例
- Python NetworkX from_graph6_bytes用法及代码示例
- Python NetworkX from_numpy_matrix用法及代码示例
- Python NetworkX from_sparse6_bytes用法及代码示例
- Python NetworkX from_agraph用法及代码示例
- Python NetworkX from_numpy_array用法及代码示例
- Python NetworkX freeze用法及代码示例
- Python NetworkX full_join用法及代码示例
- Python NetworkX find_induced_nodes用法及代码示例
- Python NetworkX floyd_warshall_predecessor_and_distance用法及代码示例
- Python NetworkX find_cycle用法及代码示例
- Python NetworkX find_threshold_graph用法及代码示例
- Python NetworkX negative_edge_cycle用法及代码示例
- Python NetworkX voronoi_cells用法及代码示例
- Python NetworkX numerical_edge_match用法及代码示例
- Python NetworkX inverse_line_graph用法及代码示例
- Python NetworkX LFR_benchmark_graph用法及代码示例
注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.convert_matrix.from_pandas_adjacency。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。