Prof Brian D Ripley <[EMAIL PROTECTED]> writes:

> Try .saveRDS/.readRDS which enable you to save and load unnamed objects (in
> your case list(A, B, C)).

Or, consider whether an environment wouldn't suit your purposes just as
well as a list:

e <- new.env()
load("foo.Rdata",e)
ls(e)
e$A 

..etc...

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - ([EMAIL PROTECTED])             FAX: (+45) 35327907

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to