Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

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

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:




x <- rep(1:5)
  
# Using rep() method
gfg <- append(x, 10)
  
print(gfg)


Output:

[1]  1  2  3  4  5 10

Example 2:




x <- rep(10:15)
  
# Using rep() method
gfg <- append(x, 1, 1)
  
print(gfg)


Output:

[1] 10  1 11 12 13 14 15
My Personal Notes arrow_drop_up
Last Updated : 10 May, 2020
Like Article
Save Article
Similar Reads