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" <[EMAIL PROTECTED]> To: <[email protected]> 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 > > ______________________________________________ > [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 > Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm ______________________________________________ [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
