我有以下代码来创建示例函数并生成模拟数据
mean_detects<- function(obs,cens) {
detects <- obs[cens==0]
nondetects <- obs[cens==1]
res <- mean(detects)
return(res)
}
mu <-log(1); sigma<- log(3); n_samples=10, n_iterations = 5; p=0.10
dset2 <- function (mu, sigma, n_samples, n_iterations, p) {
X_after <- matrix(NA_real_, nrow = n_iterations, ncol = n_samples)
delta <- matrix(NA_real_, nrow = n_iterations, ncol = n_samples)
lod <- quantile(rlnorm(100000, mu, sigma), p = p)
pct_cens <- numeric(n_iterations)
count <- 1
while(count <= n_iterations) {
X_before <- rlnorm(n_samples, mu, sigma)
X_after[count, ] <- pmax(X_before, lod)
delta [count, ] <- X_before <= lod
pct_cens[count] <- mean(delta[count,])
if (pct_cens [count] > 0 & pct_cens [count] < 1 ) count <- count + 1 }
ave_detects <- mean_detects(X_after,delta) ## how can I use apply or other functions here?
return(ave_detects)
}
如果我指定 n_iterations,我将有一个 1x10 X_after 矩阵和 1x10 delta 矩阵。然后 mean_detects 函数使用此命令可以正常工作。
ave_detects <- mean_detects(X_after,delta)
但是,当我将 n_iterations 增加到 5 时,我将有 2 个 5x10 X_after 和 delta,然后 mean_detects 函数不再起作用。它只为我提供 1 次迭代而不是 5 次的输出。我的真实模拟有数千次迭代,因此还必须考虑速度和内存。
编辑:我根据您的评论编辑了我的代码。我创建的 mean_detects 函数旨在展示同时使用 X_after 和 delta 矩阵的示例。真正的功能很长。这就是为什么我没有在这里发布它。