I have a .RData file. I want to do some operations on the dataframe that this file contains. Can I load this file on my R program and convert it into a dataframe? The only option I know currently is to convert the ..RData file to a csv and convert that csv into a data frame again. I am looking for a neater solution. I got this file from a friend of mine and I cannot produce the dataframe from scratch.
Asked
Active
Viewed 1,720 times
2
-
4Try `?load` for help – G5W May 05 '17 at 14:53
-
Are you using RStudio? If yes: Just go to File -> Open File... – Christoph May 05 '17 at 14:59
-
"convert the ..RData file to a csv" Wow. `RData` is a binary format. How do you even do this? – Richie Cotton May 05 '17 at 15:03
-
@RichieCotton Using this [link](http://stackoverflow.com/questions/13189467/how-to-convert-rdata-format-into-text-file-format) – Abhijeet Krishna May 05 '17 at 15:14
-
@Christoph Yes that does the job. Thanks. – Abhijeet Krishna May 05 '17 at 15:18