Open In App

Combine Arguments into a Vector in R Programming - c() Function

Last Updated : 15 Jun, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
c() function in R Language is used to combine the arguments passed to it.
Syntax: c(...) Parameters: ...: arguments to be combined
Example 1: Python3 1==
# R program to cumulative maxima

# Calling c() function
x <- c(1, 2, 3, 4)
x
Output:
[1] 1 2 3 4
Example 2: Python3 1==
# R program to cumulative maxima

# Calling c() function
x <- c("a", "b", "c", "d")
x
Output:
[1] "a" "b" "c" "d"

Next Article

Similar Reads