gpt4 book ai didi

plugins - Gephi 0.9.1 版本中缺少 Neo4j 插件

转载 作者:行者123 更新时间:2023-12-04 21:09:10 25 4
gpt4 key购买 nike

我对neo4j很陌生。在我的图表中,有超过 5k 个节点,neo4j 浏览器没有显示所有节点,因为似乎有限制,而且图片也很乱。
所以我试图 gephi 0.9 并安装了相同的。
但是我找不到neo4j 数据库插件。我查了下
工具 --> 插件 --> 可用插件部分

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

Plugin screenshot

提前致谢。

最佳答案

您实际上不需要 Gephi 的 Neo4j 插件,因为您可以使用 neo4j-shell-tools而是做一个 GraphML export ,并在 Gephi 中打开它。

注意export-graphml的选项解析有点问题(我应该提出一个关于它的问题);如果您想使用 -t-r标志,它们必须在 -o 之前指定, 像这样:

export-graphml -r -o out.graphml match ...

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

<?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">

我改成

<?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">
<key attr.name="label" attr.type="string" for="node" id="labels"/>
<key attr.name="label" attr.type="string" for="edge" id="label"/>
<key attr.name="someProperty" attr.type="boolean" for="node" id="someProperty"/>
<!-- more descriptions of node properties -->
<graph id="G" edgedefault="directed">

关于plugins - Gephi 0.9.1 版本中缺少 Neo4j 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38339293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com