A list is an in-built data structure in R used to store one-dimensional data. A list, unlike a vector, can store values of different data types together. When working with lists, it can be handy to know how to quickly append value to them. In this tutorial, we will look at how to append an element to an existing list in R with the help of some examples.
How to append an element to a list in R?
You can use the R append()
function to append a value to a list. Pass the list and the value as arguments to the function. The following is the syntax.
# append values to a list in R append(x, values, after)
It returns a list with the appended value. Let’s take a closer look at the arguments for this function.
- x – The list to which you want to append the value(s).
- values – The value (or values) you want to append.
- after – (Optional) The index after which to append the value in the list. It is equal to the length of the list by default. That is, by default, it appends the value(s) to the end of the list.
Examples
Let’s look at some examples of using the above syntax to add a value to a list in R. First, we will create a list that we will be using throughout this tutorial.
# create a list ls <- list(1, 2, 3) # display the list print(ls)
Output:
[[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3
We now have a list of some integer values.
Append value to a list in R
By default, the append()
function adds the value to the end (that is, it appends the value). For example, let’s append the value 4 to the above list. For this, Pass the list and the value to append as arguments to the append()
function.
# append 4 to the list ls <- append(ls, 4) # display the list print(ls)
Output:
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
[[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 [[4]] [1] 4
You can see that the resulting list has the value 4 at the end.
Append element at a given index in a list in R
The append()
function also has an additional parameter, after
using which you can specify the index after which you want to append the given element. For example, let’s append 5 to the above list (having values from 1 to 4) after index 2.
# append value after specific index ls <- append(ls, 5, 2) # display the list print(ls)
Output:
[[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 5 [[4]] [1] 3 [[5]] [1] 4
You can see that the value 5 is added to the list in the 3rd index (that is after index 2).
In this tutorial, we looked at how the append()
function can be used to append a value to a list. This function also allows you to append a value after a custom index in the list.
You might also be interested in –
- How to Create a List in R?
- Convert a List to Vector in R (With Examples)
- Combine Two or More Lists Into One in R
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.