plotly Sankey图:如何更改节点的默认顺序

时间:2018-02-17 08:24:24

标签: r plotly sankey-diagram

我使用plotly包创建了一个Sankey图表。

据我所知,节点的默认顺序主要由值定义。但是,我想要字母顺序,而无需手动移动鼠标药物的节点。

我可以用R?

更改默认顺序

非常感谢任何帮助。下面是一个示例代码和输出:

node_label <- c("x1_1", "x1_2", "x2_1", "x2_2")
link_source <- c(0, 0, 1, 1)
link_target <- c(2, 3, 2, 3)
link_value <- c(2, 5, 1, 3)
# when link_value <- c(5, 2, 1, 3), the order is changed.

plotly::plot_ly(
  type = "sankey", 
  domain = list(x =  c(0,1), y =  c(0,1)), 
  node = list(label = node_label),
  link = list(
    source =  link_source,
    target = link_target,
    value =  link_value))

enter image description here enter image description here

2 个答案:

答案 0 :(得分:1)

这可能值得检查,但是我发现它对我的情况很有帮助(该图有点复杂)。 如果在整理数据标签时,请确保按照要显示的顺序整理列表。

例如,如果有一个节点需要提早到达(左),只需在其余节点之前弹出 labelList.insert(0, labelList.pop(labelList.index(first_node_label)))

然后将labelList插入go中,您应该对该结构具有一些(尽管不是绝对的)控制权。

答案 1 :(得分:1)

根据@banderlog013 的建议,我实现了手动定义节点的顺序。
非常感谢!!!
以下是我的示例答案。

node_label <- c("x1_1", "x1_2", "x2_1", "x2_2")
node_x <- c(0, 0, 1, 1)
node_y <- c(0, 1, 0, 1)
link_source <- c(0, 0, 1, 1)
link_target <- c(2, 3, 2, 3)
link_value <- c(2, 5, 1, 3)

plotly::plot_ly(
  type = "sankey", 
  arrangement = "snap",
  node = list(
    label = node_label,
    x = node_x,
    y = node_y,
    pad = 20),  
  link = list(
    source =  link_source,
    target = link_target,
    value =  link_value))

请稍微用一个节点来反映节点位置。

enter image description here