Skip to content
Prev 32092 / 398506 Next

<-

I rather object to this sort of solution.  One of the strong points of
the S language is lists which allow items that belong together to be
in a single object.  It's hard to believe that the results of a single call
to a function don't belong together.

R without an accent (or at least with my accent) would attach the list:

res <- myfunc()
attach(res)
summary(a)


Patrick Burns

Burns Statistics
patrick at burns-stat.com
+44 (0)20 8525 0696
http://www.burns-stat.com
(home of S Poetry and "A Guide for the Unwilling S User")
David Brahm wrote: