getting the name of a dataframe from loading a .rda file in R
问题 I am trying to load an .rda file in r which was a saved dataframe. I do not remember the name of it though. I have tried a<-load("al.rda") which then does not let me do anything with a. I get the error Error:object 'a' not found I have also tried to use the = sign. How do I load this .rda file so I can use it? I restared R with load("al.rda) and I know get the following error Error: C stack usage is too close to the limit 回答1: Use 'attach' and then 'ls' with a name argument. Something like: