我想创建一个带状图(实际上它是多组分类变量的线图),但以 3d 样式显示。这看起来像这样:
因此,也许我们希望将以下示例数据绘制为带状图:
set.seed(10)
fun <- function(i) data.frame(person=rep(LETTERS[i], 26),
letter=letters, count=sample(0:100, 26, T))
dat <- do.call(rbind, lapply(1:10, function(i) fun(i)))
library(ggplot2) #a traditional 2-d line plot of the data
ggplot(data=dat, aes(x=letter, y=count, group=person, color=person)) +
geom_line()
这如何在 R 中实现?我知道可能有更好的方法来显示数据,但我目前的兴趣是制作带状图。