Skip to content
Prev 220459 / 398500 Next

Creating data frames in a loop

Well you can try 
for(i in 1:20) {
  assign(paste("ddat",i,sep="_"),data)
other processing...
}