If we have a list in R and want to export it, the simplest way is to use:
capture.output(mylist, file = "NewFile.txt")
How do we then re-import the file "NewFile.txt" back into R as a list?
If we have a list in R and want to export it, the simplest way is to use:
capture.output(mylist, file = "NewFile.txt")
How do we then re-import the file "NewFile.txt" back into R as a list?