"BXC (Bendix Carstensen)" <[EMAIL PROTECTED]> writes:

> If you have all your vectors in a list
> 
> vl <- list( p1, p2, p3)
> 
> the the following should do the trick:
> 
> res <- numeric(0)
> for( i in 1:length(vl) ) res <- c( res, vl[[i]] ) 

Or,

  do.call("c", vl)

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - ([EMAIL PROTECTED])             FAX: (+45) 35327907

______________________________________________
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

Reply via email to