On 12/18/2006 6:06 AM, [EMAIL PROTECTED] wrote: > Dear R Help, > > Why is it that if you try to return more than one objects using return(), > it says it is 'deprecated'? So how do I return more than 1 objects back to > the parent function?
Put them in a list, e.g. return(a,b) should be coded as return(list(a,b)) Duncan Murdoch ______________________________________________ [email protected] 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.
