gpt4 book ai didi

r - 延长 ggplot2 中密度图的尾部

转载 作者:行者123 更新时间:2023-12-04 10:15:17 27 4
gpt4 key购买 nike

我正在绘制相同的 密度图 使用 基础绘图系统 ggplot2 .
中的密度图基础绘图系统有光滑的尾部:

d = density(iris$Sepal.Length) 
plot(d)

enter image description here

中的密度图ggplot2 有切碎的尾部:
library(ggplot2)
ggplot( iris, aes(x=Sepal.Length)) + geom_density()

enter image description here

有什么方法可以强制 ggplot2 绘制类似于基本绘图系统(具有平滑尾部)的密度图?

最佳答案

存储密度和使用 xlim从它设置范围:

library(ggplot2)

d <- density(iris$Sepal.Length)

ggplot(iris, aes(x=Sepal.Length)) +
geom_density() +
xlim(range(d$x))

剧情

plot density with full tails

关于r - 延长 ggplot2 中密度图的尾部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61093016/

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