在R中创建堆积条形图有多种解决方案,但是如何绘制堆积线图呢?
最佳答案
可以使用ggplot2
包创建堆积线图。
一些示例数据:
set.seed(11)
df <- data.frame(a = rlnorm(30), b = 1:10, c = rep(LETTERS[1:3], each = 10))
这种图的功能是
geom_area
:library(ggplot2)
ggplot(df, aes(x = b, y = a, fill = c)) + geom_area(position = 'stack')
关于r - 如何创建堆积线图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13644529/