gpt4 book ai didi

r - 在 R 中模拟一个奇怪的分布

转载 作者:行者123 更新时间:2023-12-04 16:35:55 25 4
gpt4 key购买 nike

大家好,我正在尝试模拟看起来像这样的数据:enter image description here

有人知道我会怎么做吗?

最佳答案

这可以被认为是一个经典问题,将 runif 生成的均匀随机数转换为经验相对频率的逆变换。这是一种使用大约的方法:

freq <- c(0.39, 0.02, 0.15, 0.18, 0.12, 0.09,0.04, 0.01)
sum(freq) # This is a check. The sum must be 1.0.

r_empirical <- function(n, freq) {
approx(c(0, cumsum(freq)), 0:(length(freq)),
runif(n), method="constant", f=0)$y
}

x <- r_empirical(1000, freq)

hist(x, breaks=0:length(freq))

generated distrigbution

下图演示了基本原理。阶梯显示了累积分布,红色箭头表示均匀随机数如何变换:

inverse transform

关于r - 在 R 中模拟一个奇怪的分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69905756/

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