Skip to content
Prev 2527 / 7420 Next

Bootstrapping with pseudo-replicates

Hi,

thank you Lars, your method with the matrix is the one I'll use now.
To get the % variation of e.g. a regression parameter estimate, I calculated:

coef.mean <- apply(out,2,mean,na.rm=TRUE) #Calc mean of matrix columns/reg. param.
coef.max <- apply(out,2,max,na.rm=TRUE) #Calc max of matrix columns/reg. param.
coef.min <- apply(out,2,min,na.rm=TRUE) #Calc min of matrix columns/reg. param.

var.coef <- (coef.max-coef.min)/(coef.mean/100)


/Johannes

-------- Original-Nachricht --------
--