gpt4 book ai didi

r - ggplot2 geom_密度限制

转载 作者:行者123 更新时间:2023-12-04 00:52:44 24 4
gpt4 key购买 nike

如何在对 geom_density 的调用中删除限制末尾的行?

下面是一个例子:

library(ggplot2)
set.seed(1234)

dfGamma = data.frame(nu75 = rgamma(100, 0.75),
nu1 = rgamma(100, 1),
nu2 = rgamma(100, 2))

dfGamma = stack(dfGamma)
ggplot(dfGamma, aes(x = values)) +
geom_density(aes(group = ind, color = ind))

产生,
enter image description here

我将如何摆脱绘图边缘的垂直蓝线,以及沿 x 轴运行的水平蓝线?

最佳答案

您可以使用 stat_density()而不是 geom_density()并添加参数 geom="line"position="identity" .

ggplot(dfGamma, aes(x = values)) + 
stat_density(aes(group = ind, color = ind),position="identity",geom="line")

enter image description here

关于r - ggplot2 geom_密度限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17006956/

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