如何在Cytoscape.js中指定节点之间的链接距离?

时间:2016-12-30 22:05:20

标签: cluster-analysis cytoscape.js topicmodels

我是Cytoscape.js的新手,所以我可能会遗漏一些明显的东西......

我知道如何在D3.js中执行此操作,但需要更多功能来显示大量节点(> 1,000)的群集,并且不需要可视化链接。

提前感谢我指出正确的方向......

1 个答案:

答案 0 :(得分:0)

事实证明我正在查看WebCola的文档,而不是Cytoscape.js: - )

elements: {
      nodes: [
        { data: { id: 'a' } },
        { data: { id: 'b' } },
        { data: { id: 'c' } },
        { data: { id: 'd' } },
        { data: { id: 'e' } }
      ], 

      edges: [
        { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } },
        { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } },
        { data: { id: 'be', weight: 4, source: 'b', target: 'e' } },
        { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } },
        { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } },
        { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } },
        { data: { id: 'de', weight: 7, source: 'd', target: 'e' } }
      ]
    }