我正在尝试使用 ecdf,但我不确定我是否做得对。我的最终目的是找到与特定值对应的分位数。举个例子:
sample_set <- c(20, 40, 60, 80, 100)
# Now I want to get the 0.75 quantile:
quantile(x = sample_set, probs = 0.75)
#result:
75%
80
# Let's use ecdf
ecdf(x = sample_set) (80)
#result
0.8
为什么会出现这种差异?我是在犯一些小错误,还是取决于分位数的计算方式?
谢谢,马克斯