search for: 83ef4c3e

Displaying 1 result from an estimated 1 matches for "83ef4c3e".

Did you mean: 534f4c3e
2008 Sep 26
6
Return a list
Dear R Users, another problem for me is the output of a function. I have several output variables which I give back with the list command. test <- function {return(list(a,b,c,d,e,f,g,...))} After the usage of the function I want to assign the variables to the output variables. result <- test() a <- result$a b <- result$b c <- result$c d <- result$d ... is there a more