jeromyanglim / learning_r

assorted notes to self while learning R
1 stars 0 forks source link

How to combine list of data.frames with same variables into a combined data.frame? #9

Closed jeromyanglim closed 12 years ago

jeromyanglim commented 12 years ago
do.call(rbind, list_of_data_frames)

it's also stated here and here.