Ok so if I have a function:

 

functest<-function(x){

            a<-x+1

            b<-x+2

            c<-x+3

paste(a)

paste(b)

paste(c)

}

 

Now I know I can do cat(), or return() on one of them but if I was to run
the function with any number, how could I create objects to save so I could
do, I am wondering if I have more than one object within my function.

 

functest$a and get the result. I hope this is clear.

 

-------------------------------------------

Joe King, M.A.

Ph.D. Student 

University of Washington - Seattle

206-913-2912  

 <mailto:j...@joepking.com> j...@joepking.com

-------------------------------------------

"Never throughout history has a man who lived a life of ease left a name
worth remembering." --Theodore Roosevelt

 


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org 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