2

我正在使用内核估计,我将densityR 中的函数应用于我的数据文件(双变量),经过几次统计处理后,我需要转换这些数据,我的问题来了:

是否存在非参数方法的逆累积分布函数?

我试过谷歌、ethz 论坛、R 帮助,但似乎不见了。

4

1 回答 1

3

听起来你想要分位数功能:

# simulate some data
mydata = rnorm(1000)

# print the quantiles at a few points
# (it's the inverse of the cumulative distribution function):
print(quantile(mydata, .5))
print(quantile(mydata, .75))

# show the curve from 0 to 1
curve(quantile(mydata, x))
于 2013-01-11T15:54:02.037 回答