在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/

10-12 19:10