Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to concatenate strings in R?
Concatenation can be done by using paste function in R.
Example
> paste("I", "Love", "R", sep=" ")
[1] "I Love R"
If we want to specify characters between words then it can be done by using collapse argument as follows −
> x <- c("I", "Love", "R")
> x
[1] "I" "Love" "R"
> paste(x, collapse="-")
[1] "I-Love-R" Advertisements
