Taka Matzmoto
2006-Feb-14 08:32 UTC
[R] combine elements of a character vector into a character
Hi R users I have a simple question to ask x <- c("a","b","c") x [1] "a" "b" "c" 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
Dimitris Rizopoulos
2006-Feb-14 08:38 UTC
[R] combine elements of a character vector into a character
probably you missed the 'collapse' argument of paste(); try this: paste(x, collapse = "") Best, Dimitris ---- Dimitris Rizopoulos Ph.D. Student Biostatistical Centre School of Public Health Catholic University of Leuven Address: Kapucijnenvoer 35, Leuven, Belgium Tel: +32/(0)16/336899 Fax: +32/(0)16/337015 Web: http://www.med.kuleuven.be/biostat/ http://www.student.kuleuven.be/~m0390867/dimitris.htm ----- Original Message ----- From: "Taka Matzmoto" <sell_mirage_ne at hotmail.com> To: <r-help at stat.math.ethz.ch> Sent: Tuesday, February 14, 2006 9:32 AM Subject: [R] combine elements of a character vector into a character> Hi R users > > I have a simple question to ask > > x <- c("a","b","c") > x > [1] "a" "b" "c" > > 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 > > ______________________________________________ > R-help at 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 >Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
Diethelm Wuertz
2006-Feb-14 08:55 UTC
[R] combine elements of a character vector into a character
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 > >______________________________________________ >R-help at 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 > > >