Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 ggplot 绘制直方图(实际上使用 geom_bar 函数),但不是将每个 bin 定义为唯一范围,而是可以将每个 bin 定义为 >= 某个值。即第一个 bin >= 1 第二个 bin >= 2 等等。
谢谢。
累积分布函数不是更自然吗?
x <- rexp(1000) hist(x) plot(ecdf(x))
底部图是 CDF,您可以在那里读取累积总数。大约 60% 的值 >=1。大约 85% 的值 >= 2。您可以替换正常 CDF 的 y 轴标签以使用正常绝对计数值而不是百分比。