gpt4 book ai didi

r - CDF超出R ggplot2中的值范围

转载 作者:行者123 更新时间:2023-12-01 15:52:21 25 4
gpt4 key购买 nike

我尝试在 R 中使用 ggplot2 绘制 CDF,得到以下图 enter image description here

但是数据的最小值和最大值是 1947 年和 2017 年。我不希望绘制的线超出范围 [1947, 2017]。

ggplot(df, aes(x=year)) + stat_ecdf(geom="line") + xlab("Year") + xlim(1947, 2017)

谁能帮忙解决这个问题吗?

最佳答案

尝试使用具有 FALSE 值的 pad 参数:

ggplot( data.frame(x=1947:2017), aes(x=x)) + stat_ecdf(geom="line", pad=FALSE)

enter image description here

关于r - CDF超出R ggplot2中的值范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50082592/

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