[R] Combining the components of a character vector

Ben Bolker ben at zoo.ufl.edu
Thu Apr 3 15:38:52 CEST 2003


  paste(x,collapse=" ")


On Wed, 2 Apr 2003, John Miyamoto wrote:

> Dear Help,
>    Suppose I have a character vector.
> 
> x <- c("Bob", "loves", "Sally")
> 
> I want to combine it into a single string:  "Bob loves Sally" .
> paste(x) yields:
> paste(x)
> [1] "Bob"   "loves" "Sally"
> 
> The following function combines the character vector into a string in the
> way that I want, but it seems somewhat inelegant.
> 
> paste.vector <- function(x, ...) {
> 	output <- NULL
> 	for (i in 1:length(x)) output <- paste(output, x[i], ...)
> 	output	} #end of function definition
> 
> paste.vector(x)
> [1] " Bob loves Sally"
> 
> Is there a more natural (no loop) way to do this in R?
> 
> John Miyamoto
> 
> --------------------------------------------------------------------
> John Miyamoto, Dept. of Psychology, Box 351525
> University of Washington, Seattle, WA 98195-1525
> Phone 206-543-0805, Fax 206-685-3157, Email jmiyamot at u.washington.edu
> Homepage http://faculty.washington.edu/jmiyamot/
> --------------------------------------------------------------------
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
> 

-- 
318 Carr Hall                                bolker at zoo.ufl.edu
Zoology Department, University of Florida    http://www.zoo.ufl.edu/bolker
Box 118525                                   (ph)  352-392-5697
Gainesville, FL 32611-8525                   (fax) 352-392-3704



More information about the R-help mailing list