gpt4 book ai didi

r - 如何创建堆积线图

转载 作者:行者123 更新时间:2023-12-03 23:20:05 24 4
gpt4 key购买 nike

在 R 中创建堆积条形图有多种解决方案,但是如何绘制堆积线图?

enter image description here

最佳答案

可以使用 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')

enter image description here

关于r - 如何创建堆积线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13644529/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com