Vivek Ayer wrote: > Hi guys, > > I was wondering why this piece of code doesn't work: > > foreach (i = c(1.25,1.50)) %dopar% { > assign(paste("test_",i,sep=""),i) > } > > but, this does: > > foreach (i = c(1.25,1.50)) %do% { > assign(paste("test_",i,sep=""),i) > } > ... and which package are these functions in?