是否有任何函数可以返回节点的外边缘?
我正在使用 python 和 networkx 包。我需要找到连接到给定节点的外边缘的节点。 我知道有一个函数 networkx.DiGraph.out_edges 但它返回整个图的边缘。
I am using python with networkx package. I need to find the nodes connected to out edges of a given node.
I know there is a function networkx.DiGraph.out_edges but it returns out edges for the entire graph.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不是networkx专家,但是你尝试过networkx.DiGraph.out_edges,指定源节点?
如果您只想要单个节点的外边缘,请将该节点传递到 nbunch 内部:
I'm not a networkx expert, but have you tried networkx.DiGraph.out_edges, specifying the source node?
If you just want the out edges for a single node, pass that node in inside the nbunch:
最简单的方法是使用 successors() 方法:
The simplest way is to use the successors() method: