Re: [R] multiple multiplication in R

2008-06-18 Thread Jorge Ivan Velez
Dear Manli, Perhaps: x<-c(1,2,3,4,5,6) prod(x) [1] 720 paste(x,collapse="*",sep="") [1] "1*2*3*4*5*6" HTH, Jorge On Wed, Jun 18, 2008 at 7:22 PM, Manli Yan <[EMAIL PROTECTED]> wrote: > hi: just a very simple quesion,how to do multiple multiplication in R > x<-c(1,2,3,4,5,6) > how to g

Re: [R] multiple multiplication in R

2008-06-18 Thread Charles Annis, P.E.
p@r-project.org Subject: [R] multiple multiplication in R hi: just a very simple quesion,how to do multiple multiplication in R x<-c(1,2,3,4,5,6) how to get 1*2*3*4*5*6? I checked the Arithmetic Operators in R,but did not found the operators for this function,anyway can do this except th

Re: [R] multiple multiplication in R

2008-06-18 Thread Erik Iverson
see ?prod Manli Yan wrote: hi: just a very simple quesion,how to do multiple multiplication in R x<-c(1,2,3,4,5,6) how to get 1*2*3*4*5*6? I checked the Arithmetic Operators in R,but did not found the operators for this function,anyway can do this except the loop? [[alternative

[R] multiple multiplication in R

2008-06-18 Thread Manli Yan
hi: just a very simple quesion,how to do multiple multiplication in R x<-c(1,2,3,4,5,6) how to get 1*2*3*4*5*6? I checked the Arithmetic Operators in R,but did not found the operators for this function,anyway can do this except the loop? [[alternative HTML version deleted]] _