I am trying to load a data frame that is in .RData
format. I am using load()
as is presented here. When I get the object in my environment, it is loaded as a large function displaying the following output:
> load("bsas_short.RData")
> data
function (..., list = character(), package = NULL, lib.loc = NULL,
verbose = getOption("verbose"), envir = .GlobalEnv)
I wonder why it is loading as a large function
object instead of a data.frame
.