Gephi 0.9.1版本中缺少Neo4j插件

hr0*_*r02 5 plugins neo4j gephi

我对neo4j很新.在我的图表中,有超过5k个节点,neo4j浏览器没有显示所有节点,因为似乎有一个限制,图片也很混乱.所以我正在尝试gephi 0.9并安装相同的.但我无法找到neo4j数据库插件.我检查了工具 - >插件 - >可用的插件部分

如果我在这里遗漏了什么,请告诉我.

插件截图

提前致谢.

Fra*_*eau 2

您实际上不需要 Gephi 的 Neo4j 插件,因为您可以使用neo4j-shell-tools来执行GraphML 导出,并在 Gephi 中打开它。

请注意,选项解析export-graphml有点错误(我应该就此提出一个问题);如果您想使用-t-r标志,则必须在 之前指定它们-o,如下所示:

export-graphml -r -o out.graphml match ...
Run Code Online (Sandbox Code Playgroud)

我还必须向 GraphML 文件添加一些元数据描述,以便 Gephi 找到更多数据(我还应该就此提出一个问题,至少对于通用元数据)。文件的开头看起来像

export-graphml -r -o out.graphml match ...
Run Code Online (Sandbox Code Playgroud)

我改为

<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<graph id="G" edgedefault="directed">
Run Code Online (Sandbox Code Playgroud)