'Graph' object has no attribute 'graph'
时间: 2023-12-07 09:39:43 浏览: 178
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于使用了过时的代码或版本不兼容引起的。在新版本的networkx中,'Graph'对象没有'graph'属性。相反,您可以使用'edges'或'nodes'属性来访问图的边缘或节点。如果您使用的是旧版本的networkx,则可以尝试更新到最新版本或使用'graph'属性而不是'pred'属性。
以下是一个例子,展示如何使用'edges'属性来访问图的边缘:
```python
import networkx as nx
# 创建一个简单的无向图
G = nx.Graph()
G.add_edge(1, 2)
G.add_edge(2, 3)
# 访问图的边缘
print(G.edges) # 输出:[(1, 2), (2, 3)]
```
阅读全文