Open In App

Adding elements in a vector in R programming - append() method

Last Updated : 10 May, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
append() method in R programming is used to append the different types of integer values into a vector in the last.
Syntax: append(x, value, index(optional)) Return: Returns the new vector after appending given value.
Example 1: Python3
x <- rep(1:5)

# Using rep() method
gfg <- append(x, 10)

print(gfg)
Output:
[1]  1  2  3  4  5 10
Example 2: Python3
x <- rep(10:15)

# Using rep() method
gfg <- append(x, 1, 1)

print(gfg)
Output:
[1] 10  1 11 12 13 14 15

Next Article
Article Tags :

Similar Reads