I have a .rda file and i want to read it in R and aim to convert it to dataframe and eventually i have to read it as .maf filer in maftools but i am failing on first step.
By doing
File<-load(file.choose()) #loading .rda file
head(File)
Name
How to read it.
load()doesn't return a value, it populates an environment (with one or several objects), by default the local one but this can be tweaked, maybe this will be useful:Created on 2024-03-22 with reprex v2.0.2