gpt4 book ai didi

r - 如何使用 ggplot 绘制反向(互补)ecdf?

转载 作者:行者123 更新时间:2023-12-02 05:37:05 27 4
gpt4 key购买 nike

我目前使用 stat_ecdf 来绘制累积频率图。

这是我使用的代码

    cumu_plot <- ggplot(house_total_year, aes(download_speed, colour = ISP)) + 
stat_ecdf(size=1)

但是我希望将 ecdf 反转(互补 ecdf)。有什么最简单的方法可以做到这一点吗?

干杯!

最佳答案

来自 stat_ecdf 的帮助页面:

Computed variables

x

x in data

y

cumulative density corresponding x

所以这有效:

p <- ggplot(dataframe_with_column_Z, aes(x=Z))

p + geom_line(aes(y = 1 - ..y..), stat='ecdf')

Output

关于r - 如何使用 ggplot 绘制反向(互补)ecdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37221303/

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