I have n y variables with 100 rows each. To resample from 1 to nrows, the following code it gives the expected result, but its is tedious and impractical. To reproduce the situation, lets suposse that y has 5 rows:
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)
I would like to use something like the following code, but it gives unexpected results. Please, somebody could helpme. Thanks.
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