python中networkx中对于有向图调用函数add_edge(),居然报错了,求解释!!!
代码如下:>>>importnetworkxasnx>>>G1=nx.DiGraph>>>G1.add_edge(1,2)Traceback(mostrecentcall...
代码如下:
>>> import networkx as nx
>>> G1=nx.DiGraph
>>> G1.add_edge(1,2)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
G1.add_edge(1,2)
TypeError: unbound method add_edge() must be called with DiGraph instance as first argument (got int instance instead)
这报的是什么错啊 展开
>>> import networkx as nx
>>> G1=nx.DiGraph
>>> G1.add_edge(1,2)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
G1.add_edge(1,2)
TypeError: unbound method add_edge() must be called with DiGraph instance as first argument (got int instance instead)
这报的是什么错啊 展开
展开全部
第二行改一下:
G1=nx.DiGraph()
G1=nx.DiGraph()
追问
我想在有向图中画两个个有向边,从节点1到节点2,从节点2到节点3,这样写:add_edges_from([(1,2),(2,3)]),但是我list_out=G.out_degree(),print以后是:{1: 1, 2: 1, 3: 1, 4: 0},是一个字典树,到底应该怎么才能画两个个有向边,从节点1到节点2,从节点2到节点3,求解答!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
G1=nx.DiGraph()缺了()
更多追问追答
追问
我想在有向图中画两个个有向边,从节点1到节点2,从节点2到节点3,这样写:add_edges_from([(1,2),(2,3)]),但是我list_out=G.out_degree(),print以后是:{1: 1, 2: 1, 3: 1, 4: 0},是一个字典树,到底应该怎么才能画两个个有向边,从节点1到节点2,从节点2到节点3,求解答!!
追答
你这样就是生产了两个有向边,不知道你问啥呢?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询