gpt4 book ai didi

r - Y 轴上带有百分比的累积直方图

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

我希望在 R 项目中绘制一个累积直方图,其中在 Y 轴上报告百分比而不是频率

x <- c(rnorm(100), rnorm(50, mean=2,sd=.5))
h <- hist(x, plot=FALSE, breaks=20)
h$counts <- cumsum(h$counts)
h$density <- cumsum(h$density)
plot(h, freq=TRUE, main="(Cumulative) histogram of x", col="white", border="black")
box()

感谢帮助

最佳答案

这不是经验累积分布函数图吗?如

plot(ecdf(x))

它产生:

enter image description here

关于r - Y 轴上带有百分比的累积直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13346633/

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