I have the following data frame and I want to break it up into 10 different data frames. I want to break the initial 100 row data frame into 10 data frames of 10 rows. I cou
require(ff) df <- data.frame(one=c(rnorm(1123)), two=c(rnorm(1123)), three=c(rnorm(1123))) for(i in chunk(from = 1, to = nrow(df), by = 200)){ print(df[min(i):max(i), ]) }