I am a new user of R. I have three RData files with the same object name and I want to merge it so that I will have one .Rdata file with one object name.
Example:
- file1.RData with object name A
- file2.RData with object name A
- file3.RData with object name A
and Result should be
- file.RData = object A
I tried rbind and merge command, but nothing is working.