How can I use R to partition a dataset into N equally sized partitions? I've tried something like
for (i in 1:100){data[i] <- full_data[i:(100000*i),]}
Which obviously doesn't work, but hopefully gives an idea of what I'm trying to accomplish. The full dataset has 1,000,000 rows and is already in random order. I'd like 100 equal and independent datasets of 10,000 rows each.