Christofer Bogaso <bogaso.christo...@gmail.com> writes:

Hello

In case you have conflicting data issue when you load data, you can also do it 
the other way around. Indeed you never know when a possible conflict might 
occur in the future.
The following line load the data in a new environment e first then get it back 
to your current environment.

loaded..data <- get(load("test.RData",e<- new.env()),e)

you might then want to remove everything in that enviromnent afterwards,

rm(list=ls(envir=e1), envir=e1)

HTH

Jeremie

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to