I'm running into some trouble. I have Rfile which is in .RData format. I want to dig into the r-code to see how they created the project?
Is there a way to convert .RData into .R or .rmd?
I tried the below code but it is not working.
newEnv <- new.env()
load('C:/h.RData', newEnv)
dump(c(lsf.str(newEnv)), file="C:/normalCodeFile.R", envir=newEnv)
Any help will be appreciated. Thanks.