I saw some similar qestions and I tried to work it out on my own, but I couldn\'t. This is my problem:
I have to load a isfar.RData file to use it in other computati
If you have a lot of variables in your Rdata file and don't want them to clutter your global environment, create a new environment and load all of the data to this new environment.
load(file.path("C:/Users/isfar.RData"), isfar_env <- new.env() )
# Access individual variables in the RData file using '$' operator
isfar_env$var_name
# List all of the variable names in RData:
ls(isfar_env)