在gvisSankey情节中徘徊时未显示的值

时间:2015-07-01 11:35:39

标签: r googlevis

我想知道我们是否可以在gVissankey情节上显示值。

例如,以下代码

datSK <- data.frame(From=c(rep("A",3), rep("B", 3)),

To=c(rep(c("X", "Y", "Z"),2)),

Weight=c(5,7,6,2,9,4))

Sankey <- gvisSankey(datSK, from="From", to="To",    
                                    weight="Weight",
 options=list(

 sankey="{link: {color: { fill: '#d799ae' } },

 node: { color: { fill: '#a61d4c' },

 label: { color: '#871b47' } }}"))

plot(Sankey)

当我们在sankey阴谋中移动时,我希望sankey的重量显示为5,7,6。

0 个答案:

没有答案