This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to convert RDS file into excel

Im trying to conver an rds file (about 6Gb) into excel and having a bit of trouble. Is there away to covert this file?

python r data

It can be inferred that you mean an R Data Set (RDS) file? There is no way for us to tell you how to convert this into a format readable by Excel until you tell us the type of data that is being stored in the RDS file. Hint: please open a session of R and load the RDS file via readRDS(), and then please share a sample of the contents here.

first .rds file into R (readRDS) and then write to xlsx file (write_xlsx or write.xlsx) or to a tab separated file (write.table). However, I suggest doing against this as output xlsx file will be huge. Any operations insidue such a huge file, is difficult.

0 answers

No answers yet.

Log in to answer this question.