Taka Matzmoto wrote:

>Hi R users
>
>I have a simple question to ask
>
>x <- c("a","b","c")
>x
>[1] "a" "b" "c"
>  
>
Try

paste(x, collapse = "")


DW

>I like to have "abc" instead of having "a" "b" "c"
>
>I tried to use paste and other functions related to character.
>
>Is there any function (command) that enable me to combine elements of a 
>character vector into one character ?
>
>Thanks
>
>______________________________________________
>[email protected] mailing list
>https://stat.ethz.ch/mailman/listinfo/r-help
>PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
>
>  
>

______________________________________________
[email protected] 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