我试图用 R 中的桑基图来可视化我的数据流。
我发现 这篇博文链接到一个生成 Sankey Diagram 的 R 脚本; 不幸的是,它非常原始,而且有些局限(参见下面的示例代码和数据)。
有人知道其他更成熟的脚本(或者甚至包)吗?我的最终目标是通过图表组件的相对大小来可视化数据流和百分比,就像在 这些桑基图的例子中一样。
我发布了 在 r-help 列表中有一个类似的问题,但是在两周没有任何回应之后,我在这里试试我的堆栈溢出的运气。
谢谢, 艾瑞克
另外,我知道 平行集图但那不是我要找的。
# thanks to, https://tonybreyal.wordpress.com/2011/11/24/source_https-sourcing-an-r-script-from-github/
sourc.https <- function(url, ...) {
# install and load the RCurl package
if (match('RCurl', nomatch=0, installed.packages()[,1])==0) {
install.packages(c("RCurl"), dependencies = TRUE)
require(RCurl)
} else require(RCurl)
# parse and evaluate each .R script
sapply(c(url, ...), function(u) {
eval(parse(text = getURL(u, followlocation = TRUE,
cainfo = system.file("CurlSSL", "cacert.pem",
package = "RCurl"))), envir = .GlobalEnv)
} )
}
# from https://gist.github.com/1423501
sourc.https("https://raw.github.com/gist/1423501/55b3c6f11e4918cb6264492528b1ad01c429e581/Sankey.R")
# My example (there is another example inside Sankey.R):
inputs = c(6, 144)
losses = c(6,47,14,7, 7, 35, 34)
unit = "n ="
labels = c("Transfers",
"Referrals\n",
"Unable to Engage",
"Consultation only",
"Did not complete the intake",
"Did not engage in Treatment",
"Discontinued Mid-Treatment",
"Completed Treatment",
"Active in \nTreatment")
SankeyR(inputs,losses,unit,labels)
# Clean up my mess
rm("inputs", "labels", "losses", "SankeyR", "sourc.https", "unit")
使用上述代码生成的桑基图,