我尝试了所有可能的方法将Neo4j 3.1.1数据库与Gephi 0.9.1连接,但它没有连接
环境: 操作系统:Windows 7专业版 JDK:1.8 Neo4j:3.1.1 Gephi:0.9.1
答案 0 :(得分:1)
我使用Apoc插件运行它,它在Windows上按预期工作。
你需要做的是安装Gephi图形流插件,可以找到Tools --> Plugins --> Available Plugins
运行图表流后,我们会使用apoc.gephi.add
,例如:
match path = (:Person)-[:ACTED_IN]->(:Movie)
WITH path LIMIT 1000
with collect(path) as paths
call apoc.gephi.add(null,'workspace0', paths) yield nodes, relationships, time
return nodes, relationships, time
有关详细信息,请查看documentation。
答案 1 :(得分:0)