gpt4 book ai didi

javascript - 如何从节点和链接列表创建 d3 径向树?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:00:20 26 4
gpt4 key购买 nike

我使用以下密码查询从 neo4j 数据库中提取节点和关系:

match p=(:Root) <-[:linkedTo]- () 
unwind nodes(p) as n unwind rels(p) as r
return {nodes: collect(distinct n), links: collect(distinct {source: id(endNode(r)), target: id(startNode(r))})}

我将查询结果转换为节点和链接数组,如下所示:

var obj = JSON.parse(xmlhttp.responseText);
var json = obj.data[0][0];
// Extract node list from neo4j/json data
var nodes = [];
for (n in json.nodes) {
var nodeObj = json.nodes[n];
var node = nodeObj.data;
node.id = nodeObj.metadata.id;
node.type = nodeObj.metadata.labels[0];
nodes.push(node);
}
// Create a node map
var nodeMap = {};
nodes.forEach(function(x) { nodeMap['_'+x.id] = x; nodeMap['_'+x.id].children = []; });

// Extract link list from neo4j/json data
var links = json.links.map(function(x) {
nodeMap['_'+x.source].children.push(nodeMap['_'+x.target]);
return { source: nodeMap['_'+x.source], target: nodeMap['_'+x.target] };
});

我应该如何从节点和链接在 d3 中生成树? Console.log() 显示节点和链接数组都具有正确的格式,每个节点还包含其子节点的列表。

最佳答案

如上所述,节点和子节点的数据结构是正确的。缺少的部分是根节点。因此,我更改了密码查询以识别根节点,该节点在我的图中附加为根节点,如下所示:

match p=(:Panel) <-[:belongsTo]- (), (root:Panel {Name: "root"}) 
unwind nodes(p) as n unwind rels(p) as r
return {root: id(root), nodes: collect(distinct n), links: collect(distinct {source: id(endNode(r)), target: id(startNode(r))})}

因此,按照 http://bl.ocks.org/d3noob/8324872 中的建议声明树:

var tree = d3.layout.tree()
.size([360, radius - 120]);

var diagonal = d3.svg.diagonal.radial()
.projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });

var vis = d3.select("#chart").append("svg")
.attr("width", radius * 2)
.attr("height", radius * 2 - 150)
.append("g")
.attr("transform", "translate(" + radius + "," + radius + ")");

// Compute the new tree layout starting with root
var root = nodeMap['_'+json.root];
var nodes = tree.nodes(root).reverse(), links = tree.links(nodes);
...

总而言之,诀窍是从 neo4j 以 JSON 格式报告根、节点和链接,然后构建节点数组、节点映射并根据链接将子节点分配给节点映射中的节点。

关于javascript - 如何从节点和链接列表创建 d3 径向树?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27589995/

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