I am writing multiple RDA files to my computer and trying to open them again. For example, I save a data frame called 'geocode' as:
dim(geocode)
save(geocode, file=paste0("[path]/geocodenew.Rda"))
I can see the file saved, about 30 KB, on my computer. But then I try to access it later I get:
load("[path]/geocodenew.Rda")
geocodenew
And I get the error:
"Error: object 'geocodenew' not found."
What am I doing wrong?
(I am eventually going to use this to stack multiple dataframes using rbind()
if that helps at all)