Dear User,
what's the correct way to obtain a multiple return from a function?

for example creating the simple function:

somma <- function (a, b) {
  c <- a+b
  return (a, b, c)
}

when I call it, it runs but returns the following output:

> somma(5, 7)
$a
[1] 5

$b
[1] 7

$c
[1] 12

Warning message:
return multi-argomento sono deprecati in: return(a, b, c) 

i.e. multi-return is deprecated...

thanks a lot
best regards
        Manuele

-- 
Manuele Pesenti
        [EMAIL PROTECTED]
        [EMAIL PROTECTED]
        http://mpesenti.polito.it

______________________________________________
R-help@stat.math.ethz.ch 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.

Reply via email to