R冲积图中的群藻

时间:2018-07-16 13:24:14

标签: r sankey-diagram dataflow-diagram

在冲积层中,是否可以合并具有相同源节点和目标节点的那些冲积层?例如,下图中的两个暗色别针藻都通过AB和3。

enter image description here

编辑:以下是使用泰坦尼克号数据集的示例,该示例显示了相同的行为:

# Titanic data
tit <- as.data.frame(Titanic)
tit3d <- aggregate( Freq ~ Class + Sex + Survived, data=tit, sum)
ord <- list(NULL, with(tit3d, order(Sex, Survived)), NULL)
alluvial(tit3d[,1:3], freq=tit3d$Freq, alpha=1, xw=0.2,
         col=ifelse( tit3d$Survived == "No", "red", "gray"),
         layer = tit3d$Sex != "Female",
         border="white", ordering=ord)

1 个答案:

答案 0 :(得分:2)

看起来像ggalluvial的{​​{1}}软件包,在每个类别中断时都会重置。那可能是您想要的更多。例如

geom_flow

enter image description here