I have a dataframe made up of 400'000 rows and about 50 columns. As this dataframe is so large, it is too computationally taxing to work with. I would like to split this dataframe up into smaller ones, after which I will run the functions I would like to run, and then reassemble the dataframe at the end.

There is no grouping variable that I would like to use to split up this dataframe. I would just like to split it up by number of rows. For example, I would like to split this 400'000-row table into 400 1'000-row dataframes. How might I do this?

Thanks for your help!

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Make your own grouping variable.

d <- split(my_data_frame,rep(1:400,each=1000))

You should also consider the ddply function from the plyr package.

edited for brevity, after Hadley's comments.

link|improve this answer
thanks! that works great! And yes, I'll look into the plyr package as it seems very useful. – Pascal Aug 15 '11 at 0:03
Why are you using split.data.frame and not split? And you don't need to coerce the grouping variable to a factor. – hadley Aug 15 '11 at 7:33
wasn't sure whether those coercions/method dispatches would work, and was too lazy to take the time to test. thanks. – Ben Bolker Aug 15 '11 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.