作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前使用 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')
关于r - 如何使用 ggplot 绘制反向(互补)ecdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37221303/
我目前使用 stat_ecdf 来绘制累积频率图。 这是我使用的代码 cumu_plot <- ggplot(house_total_year, aes(download_speed, col
我有一个包含很多列的表(数据框)。现在我想对其中一列的平均值进行计算。这意味着我需要对所有列进行分组,但我需要对其进行平均的列除外。我当然可以写: df.groupby(['col1', 'col2'
我是一名优秀的程序员,十分优秀!