Combine a list of data frames into one data frame

前端 未结 9 2044
半阙折子戏
半阙折子戏 2020-11-21 11:25

I have code that at one place ends up with a list of data frames which I really want to convert to a single big data frame.

I got some pointers from an earlier ques

9条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-21 12:12

    How it should be done in the tidyverse:

    df.dplyr.purrr <- listOfDataFrames %>% map_df(bind_rows)
    

提交回复
热议问题