search for: xyadd

Displaying 2 results from an estimated 2 matches for "xyadd".

Did you mean: xadd
2005 Aug 15
2
How to get a list work in RData file
Dear R-Helper, I want to know how I get a list work which I saved in RData file. For example, > test.xy <- function(x,y) { + xy <- x+y + xy + } > > xyadd <- test.xy(x=2, y=3) > xyadd [1] 5 > x1 <- c(2,43,60,8) > y1 <- c(91,7,5,30) > > xyadd1 <- test.xy(x=x1, y=y1) > xyadd1 [1] 93 50 65 38 > save(list = ls(all=TRUE), file = "testxy.RData") > rm(list=ls(all=TRUE)) > load("C:/R/useR/testxy....
2005 Aug 15
2
queer data set
...few of us.) > > > I want to know how I get a list work which I saved in RData > file. For > > example, > > I don't understand that at all, but it looks as if you want to > save an > unevaluated call, in which case see ?quote and use something like > > xyadd <- quote(test.xy(x=2, y=3)) > > load and saving has nothing to do with this: it doesn't change the > meaning > of objects in the workspace. > > > > test.xy <- function(x,y) { > > + xy <- x+y > > + xy > > + } > > > > > &...