gpt4 book ai didi

r - 如何获得估计密度的函数?

转载 作者:行者123 更新时间:2023-12-04 20:08:23 25 4
gpt4 key购买 nike

如何将密度(数据集)的结果保存为函数?
那么如果我想评估该函数中的点 x,它会给我来自该密度(数据集)的概率?

最佳答案

(特定点的密度值不是该点的概率。)

> d <- density(sample(10,1000000,replace=TRUE,prob=(1:10)/sum(1:10)))
> plot(d)

# the density is estimated at a specified number of points. I find the closest to
# the point I want to know the density's value of and then get that value.

> fd <- function(x) d$y[which.min(abs(d$x - x))]
> fd(6)
[1] 0.311895

enter image description here

关于r - 如何获得估计密度的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22476542/

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