【问题标题】:How to change position of nodes vertically in Sankey Diagram如何在桑基图中垂直改变节点的位置
【发布时间】:2019-08-28 05:03:37
【问题描述】:

如何垂直更改 Sankey 图中节点的位置(y 轴),以使它们位于前一个节点的中间/中心而不是底部?

我的数据集:

> dput(final_df_2)
structure(list(individual_id = c(21L, 21L, 22L, 23L, 24L, 24L, 
24L, 25L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 27L, 27L, 27L, 27L
), number = c(1L, 2L, 1L, 1L, 1L, 2L, 3L, 1L, 1L, 2L, 3L, 4L, 
5L, 6L, 7L, 1L, 2L, 3L, 4L), treatment = structure(c(5L, 3L, 
2L, 4L, 1L, 5L, 3L, 2L, 3L, 5L, 2L, 5L, 4L, 5L, 1L, 2L, 5L, 5L, 
3L), .Label = c("Adalimumab", "Etanercept", "Infliximab", "Rituximab", 
"(Missing)"), class = "factor")), row.names = c(1L, 2L, 8L, 14L, 
20L, 26L, 27L, 33L, 39L, 45L, 46L, 52L, 53L, 59L, 60L, 66L, 72L, 
73L, 74L), class = "data.frame")

我的代码:

ggplot(final_df_2 , aes(x = number, stratum = treatment, alluvium = individual_id, fill = treatment, label = treatment)) +
  scale_fill_brewer(type = "qual", palette = "Set3") +
  geom_flow(width = 1/10) +
  geom_stratum(width = 1/10, colour = NA) +
  scale_x_continuous(breaks = 1:7, labels = c("1st Therapy", "2nd Therapy", "3rd Therapy", "4th Therapy", "5th Therapy", "6th Therapy", "7th Therapy"))+
  ggtitle("Treatment across observation period")+
  theme_minimal()+
  theme( panel.grid.major = element_blank(),
         panel.grid.minor = element_blank(), axis.text.y = element_blank())

我原来的桑基图:

我想做的由红色节点表示:

感谢您对此提供的任何帮助。提前致谢。

【问题讨论】:

    标签: r position nodes sankey-diagram


    【解决方案1】:

    你试过了吗

      var options = {
      width: 900,
      sankey: { node: { nodePadding: 80 } },
    };
    

    【讨论】:

      猜你喜欢
      • 2020-07-23
      • 2014-05-10
      • 1970-01-01
      • 2016-04-30
      • 2011-01-30
      • 1970-01-01
      • 1970-01-01
      • 2022-01-22
      • 2020-11-28
      相关资源
      最近更新 更多