[R] Passing multiple arguments to a function through sapply() XXXX

2012-01-04 Thread Dan Abner
Hello everyone, How does one pass multiple arguments of a user defined function to that function when called within sapply()? I have the following: myna-function(x,miss.val) {x[x %in% miss.val]-NA;x} mydataNA3-sapply(mydataNA,c(x=myna,miss.val=c(9,99))) Error in match.fun(FUN) : 'c(x =

Re: [R] Passing multiple arguments to a function through sapply() XXXX

2012-01-04 Thread David Winsemius
On Jan 4, 2012, at 3:47 PM, Dan Abner wrote: Hello everyone, How does one pass multiple arguments of a user defined function to that function when called within sapply()? I have the following: myna-function(x,miss.val) {x[x %in% miss.val]-NA;x}