Mass rbind.fill for many data frames

后端 未结 4 1705
迷失自我
迷失自我 2020-12-20 03:04

I am attempting to row bind many data frames together into a single massive data frame. The data frames are named sequentially with the first named df1, the se

4条回答
  •  时光说笑
    2020-12-20 04:07

    We can use bind_rows from dplyr

    library(dplyr)
    res <- bind_rows(mget(paste0("df", 1:100)))
    

提交回复
热议问题