Read multiple xlsx files with multiple sheets into one R data frame

前端 未结 4 698
轮回少年
轮回少年 2020-12-09 00:26

I have been reading up on how to read and combine multiple xlsx files into one R data frame and have come across some very good suggestions like, How to read multiple xlsx f

4条回答
  •  青春惊慌失措
    2020-12-09 00:59

    One more solution from this "rio" package :

    library("rio")
    
    # import and rbind all worksheets
    DT <- import_list(SINGLE_XLSX_PATH, rbind = TRUE)
    

    source : rdrr.io

提交回复
热议问题