dragan.sestovic at ubs.com
2006-Nov-15 14:34 UTC
[Rd] save objects from function (PR#9365)
Full_Name: Dragan Sestovic Version: 2.3.0 OS: Windows XP Submission from: (NULL) (139.149.1.194) I can not save R objects from function using "save". The simple example is below: I do not understand why function funSave.1 fails. Also, why does function funSave.2 work?> funSave.1 <- function(a)+ { + save(a, file="a.1.dat") + }> > funSave.2 <- function(a)+ { + b <- a + save(a, file="a.2.dat") + }> > a <- 1:10 > a[1] 1 2 3 4 5 6 7 8 9 10> save(a, file="a.dat") > load("a.dat") > a[1] 1 2 3 4 5 6 7 8 9 10> a <- 1:10 > funSave.1(a) > load("a.1.dat") > aError: recursive default argument reference> a <- 1:10 > funSave.2(b) > load("a.2.dat") > a[1] 1 2 3 4 5 6 7 8 9 10
dragan.sestovic at ubs.com writes:> Full_Name: Dragan Sestovic > Version: 2.3.0 > OS: Windows XP > Submission from: (NULL) (139.149.1.194) > > > I can not save R objects from function using "save". The simple example is > below: > I do not understand why function funSave.1 fails. Also, why does function > funSave.2 work? > > > funSave.1 <- function(a) > + { > + save(a, file="a.1.dat") > + } > > > > funSave.2 <- function(a) > + { > + b <- a > + save(a, file="a.2.dat") > + } > > > > a <- 1:10 > > a > [1] 1 2 3 4 5 6 7 8 9 10 > > save(a, file="a.dat") > > load("a.dat") > > a > [1] 1 2 3 4 5 6 7 8 9 10 > > a <- 1:10 > > funSave.1(a) > > load("a.1.dat") > > a > Error: recursive default argument reference > > a <- 1:10 > > funSave.2(b) > > load("a.2.dat") > > a > [1] 1 2 3 4 5 6 7 8 9 10......... I cannot reproduce this in a current(!) R:> funSave.1 <- function(a)+ { + save(a, file="a.1.dat") + }> > funSave.2 <- function(a)+ { + b <- a + save(a, file="a.2.dat") + }> > a <- 1:10 > a[1] 1 2 3 4 5 6 7 8 9 10> save(a, file="a.dat") > load("a.dat") > a[1] 1 2 3 4 5 6 7 8 9 10> a <- 1:10 > funSave.1(a) > load("a.1.dat") > a[1] 1 2 3 4 5 6 7 8 9 10> a <- 1:10 > funSave.2(b)Error in funSave.2(b) : object "b" not found> load("a.2.dat")Error in readChar(con, 5) : cannot open the connection In addition: Warning message: cannot open compressed file 'a.2.dat'> a[1] 1 2 3 4 5 6 7 8 9 10> a <- 1:10 > funSave.2(a) > load("a.2.dat") > a[1] 1 2 3 4 5 6 7 8 9 10 -- O__ ---- Peter Dalgaard ?ster Farimagsgade 5, Entr.B c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
Possibly Parallel Threads
- A document about implementing dtrace probes in SAX
- Re: ./configure --with-pam fails always
- "attrib +R myowndir" fails to write-protect my own dir
- Ref: Samba + Cups: don't succeed to print from Windows 2000 station
- cli_pipe: return critical error. Error was Call returnedzerobyte(EOF),hilfe!