Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中使用networkD3.
networkD3
图表看起来很拥挤。
所以我试图增加边缘之间的距离。当我通过 传递一些值时linkDistance,整个形状被扭曲并且一些节点消失了。我为所有的边缘给出了一些任意值 10。
linkDistance
我究竟做错了什么?
linkDistance 看起来像是节点之间距离的倍数。也许您应该将其更改为 2 或 3?
因为linkDistance您可以使用javascript以下功能:
javascript
value <- 1.3 linkDistance=JS('function(d) {', paste('return d.value *', value,';'), '}'))