I have a few large datasets say fam1997,fam1998,fam1999
. When I load for example
load("fam1997")
it returns a data frame called x
. Even when I instead use
fam1997 <- load("fam1997")
then
print(fam1997)
it still returns
"x"
I don't know why. Is this a bug in load()
? or I missed some points? This is quite annoying when I want to load multiple data sets at the same time.