rbind multiple data frames without typing out all the names of the data frames [duplicate]

不羁岁月 提交于 2019-12-25 06:13:36

问题


Have 68 data frames with the same structure and columns. I started to use rbind and after typing in about 30 df names, I thought there might be an easier way to concatenate all the data frames without typing in each name. I mean, what if you have 100,000 data frames to concatenate? I looked at a dozen of online resources including this site and didn't find exactly what I was looking for.

All the 68 data frames are named sequentially. For example: df_01, df_02, ... up to df_68. I tried to do rbind(df_01:df_68) and of course this did not work.

来源:https://stackoverflow.com/questions/36037543/rbind-multiple-data-frames-without-typing-out-all-the-names-of-the-data-frames

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!