On 19/08/14 14:20, William Dunlap wrote:
Have you tried the 'envir' argument to load()? E.g., envA <- new.environment() load("A.RData", envir=envA) envB <- new.environment() load("B.RData", envir=envB) plot(A$object, B$object)
Did you mean plot(envA$object, envB$object) ??? Or am I misunderstanding something? cheers, Rolf -- Rolf Turner Technical Editor ANZJS ______________________________________________ R-help@r-project.org mailing list 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.