It is a follow-up question to this one. What is the fastest way to read .xlsx
files into R ?
I use library(xlsx)
to read in data from 36 .xlsx
files. It works. However, the problem is that this is very time consuming (well over 30 minutes), especially when considering the data in each file is not that large (matrix of size 3*3652 in each file). To this end, is there a better to deal with such problem, please? Is there another quick way to read .xlsx
into R? Or can I put the 36 files into a single csv file quickly and then read into R?
Moreover, I just realised that readxl
cannot write xlsx. Is there a counterpart of it to deal with writing instead of reading?
"Response to those voted this question down":
This question is about fact instead of the so-called "opinionated answers and spam" because speed is time and time is fact but NOT opinion.
Further update:
Perhaps one can explain to us in plain language why some method works much faster than others. I am certainly confused about this.