在R googleVis sankey图表中指定节点和链接颜色

时间:2016-06-02 21:44:56

标签: r googlevis sankey-diagram

捡起这个question,我正在尝试为节点分配一组颜色,并希望使用渐变模式链接,在使用R中的GoogleVis包的Sankey图表中。问题是我有在3组节点中的每一组中都有相同的类别,我很难让它合作。

datSK <- data.frame(From=c(rep("A1",3), rep("B1", 3), rep("C1", 3), rep("A2", 3), rep("B2", 3), rep("C2",3)), 
                To=c(rep(c("A2", "B2", "C2"), 3), rep(c("A3", "B3", "C3"), 3)),
                Weight=c(5,7,6,2,9,4,3,4,5))

我希望节点A,B,C出现在图表的3个不同部分,以具有相同的颜色(分别为蓝色,橙色,绿色)。

plot(gvisSankey(datSK, from="From", 
       to="To", weight="Weight",
       options=list(sankey="{
                    link: { colorMode: 'gradient', colors: ['blue', 'orange', 'green']}, 
                    node: { colors: ['blue', 'orange', 'green']}}")))

不幸的是,我无法弄清楚如何分配颜色。

1 个答案:

答案 0 :(得分:4)

已经有一年了,我不知道你是否还需要答案,但这就是我发现的:

plot(gvisSankey(datSK, from="From", 
       to="To", weight="Weight",
       options=list(sankey="{
                    link: { colorMode: 'gradient'}, 
                    node: { colors: ['blue', 'blue', 'orange',
                                     'green','orange', 'green',
                                     'blue','orange','green']}
                             }")))

Google的Sankey Chart会根据节点的外观顺序指定颜色。这是我如何决定节点的外观顺序。基本上我创建一个节点连接列表的字符串,拆分它们,然后提取唯一的节点,然后分配颜色。

# Create a stringlist of node pairs
nodestringlist <- paste(datSK$From,datSK$To, collapse=' ')

# Split them up
nodestringvector <- strsplit(nodestringlist, split =' ')

# Find the unique nodes in order they appear
node_order <- unique(nodestringvector[[1]])
#output: "A1" "A2" "B2" "C2" "B1" "C1" "A3" "B3" "C3"

这是你想要的吗?