我刚刚安装了Graphlab,并尝试将NetworkX代码转换为Graphlab。我在Graphlab文档中找不到与G.has_edge()等效的NetworkX。如果不存在类似的功能,将如何检查Graph中是否存在Graphlab Edge?

最佳答案

SGraph.get_edges方法可用于检查特定边是否存在。在下面的示例中,我创建一个“链”图,其中具有连续整数的顶点通过边连接。

>>> import graphlab
>>> g = graphlab.SGraph().add_edges(
        [graphlab.Edge(i, i+1) for i in range(4)])

# Edge does exist.
>>> test1 = g.get_edges(src_ids=[0], dst_ids=[1])
>>> test1.num_rows()
1

# Edge does *not* exist.
>>> test2 = g.get_edges(src_ids=[0], dst_ids=[2])
>>> test2.num_rows()
0


这是get_edges的API文档的链接:https://dato.com/products/create/docs/generated/graphlab.SGraph.get_edges.html

关于python - Dato-Graphlab检查Edge是否存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35468636/

10-12 03:39