在networkD3 sankey图中的节点标签中放置换行符

时间:2017-06-22 13:20:21

标签: r sankey-diagram htmlwidgets networkd3

++++++++++++++++

更新 我认为我的问题的答案是你不能插入换行符。一位同事向我指出,节点标签是SVG块,不支持换行。

++++++++++++++++

如何为使用networkD3 R软件包生成的sankey图的节点标签添加换行符?

Place text values to right of sankey diagram借用示例我可以为标签添加值:

library(networkD3)
library(data.table)
set.seed(1999)
links <- data.table(
  src = rep(0:4, times=c(1,1,2,3,5)),
  target = sample(1:11, 12, TRUE),
  value = sample(100, 12)
)[src < target, ]  # no loops
nodes <- data.table(name=LETTERS[1:12])

#### Need to hover to get counts
##sankeyNetwork(Links=links, Nodes=nodes, Source='src', Target='target',
##  Value='value', NodeID='name', fontSize=16)

## Add text to label
txt <- links[, .(total = sum(value)), by=c('target')]
nodes[txt$target+1L, name := paste0(name, ' (', txt$total, ')')]

## Displays the counts as part of the labels
sankeyNetwork(Links=links, Nodes=nodes, Source='src', Target='target',
  Value='value', NodeID='name', fontSize=16, width=600, height=300)

我希望我可以天真地调整paste0以包含换行符,例如:

 name := paste0(name, "\n ", txt$total)

name := paste0(name, "<br/> ", txt$total)

但是我还没有能够得到任何工作,而且我的JavaScript太生锈了,一旦生成就无法尝试修复它。

1 个答案:

答案 0 :(得分:1)

您可以用<foreignObject>个text / html块替换SVG文本元素。此示例将需要大量其他格式/位置才能使用,但它表明有可能...

library(networkD3)
library(htmlwidgets)
library(data.table)

set.seed(1999)
links <- data.table(
  src = rep(0:4, times=c(1,1,2,3,5)),
  target = sample(1:11, 12, TRUE),
  value = sample(100, 12)
)[src < target, ]  # no loops
nodes <- data.table(name=LETTERS[1:12])

## Add text to label
txt <- links[, .(total = sum(value)), by=c('target')]
nodes[txt$target+1L, name := paste0(name, '<br>(', txt$total, ')')]

## Displays the counts as part of the labels
sn <- sankeyNetwork(Links=links, Nodes=nodes, Source='src', Target='target',
              Value='value', NodeID='name', fontSize=16, width=600, height=300)

onRender(sn,
         '
  function(el,x) {
    d3.selectAll(".node text").remove()
    d3.selectAll(".node")
      .append("foreignObject")
      .attr("width", 100)
      .attr("height", 50)
      .html(function(d) { return d.name; })
  }
  '
)

enter image description here