【发布时间】:2017-02-26 01:31:33
【问题描述】:
我有 n y 个变量,每个变量 100 行。为了从 1 重新采样到 nrows,下面的代码给出了预期的结果,但它既乏味又不切实际。为了重现这种情况,假设 y 有 5 行:
y<-rnorm(n=5, mean=10, sd=2)
R=1000 #number of resamplings
boot.means = numeric(R)
for (i in 1:R) { boot.sample = sample(y, 1, replace=T)
boot.means[i] = mean(boot.sample) }
m1<-mean(boot.means)
d1<-sd(boot.means)
cv1 =(d1*100)/m1
R=1000 #number of resamplings
boot.means = numeric(R)
for (i in 1:R) { boot.sample = sample(y, 2, replace=T)
boot.means[i] = mean(boot.sample) }
m2<-mean(boot.means)
d2<-sd(boot.means)
cv2 =(d2*100)/m2
R=1000 #number of resamplings
boot.means = numeric(R)
for (i in 1:R) { boot.sample = sample(y, 3, replace=T)
boot.means[i] = mean(boot.sample) }
m3<-mean(boot.means)
d3<-sd(boot.means)
cv3 =(d3*100)/m3
R=1000 #number of resamplings
boot.means = numeric(R)
for (i in 1:R) { boot.sample = sample(y, 4, replace=T)
boot.means[i] = mean(boot.sample) }
m4<-mean(boot.means)
d4<-sd(boot.means)
cv4 =(d4*100)/m4
R=1000 #number of resamplings
boot.means = numeric(R)
for (i in 1:R) { boot.sample = sample(y, 5, replace=T)
boot.means[i] = mean(boot.sample) }
m5<-mean(boot.means)
d5<-sd(boot.means)
cv5 =(d5*100)/m5
CV.OK<-(c(cv1,cv2,cv3,cv4,cv5))
plot(CV.OK)
我想使用类似下面的代码,但它会产生意想不到的结果。拜托,有人可以帮助我。谢谢。
R = 1000 #number of resamplings
boot.sample=seq(1,5, by=1)
boot.means = numeric(R)
boot.sd = numeric(R)
m = 5
d = 5
for (i in 1:5) {
for (j in 1:R) {
boot.sample[i] = sample(y, i, replace=T)
boot.means[j] = mean(boot.sample[i])
boot.sd[j] = sd(boot.sample[i])
m[i]=mean(boot.means[j])
d[i]=mean(boot.sd[j])
}
}
CV.Fail<-(d*100)/m
【问题讨论】:
标签: r loops resampling statistics-bootstrap