Lists are used in R to store one-dimensional data. Unlike vectors that can only store values of the same type, a list in R can store values of different types together. Although vectors are more commonly used in R, it can be handy to know some common operations on lists. In this tutorial, we will look at how to get the minimum value in an R list with the help of some examples.
How to get the min value in a list in R?
You can use a combination of the unlist()
function and the min()
function in R to get the minimum value in a list. The following is the syntax –
# get the min value in a list min(unlist(ls), na.rm=FALSE)
First, use the unlist()
function to convert the list into a vector, and then use the min()
function to get the minimum value. The following are the arguments that you can give to the min()
function in R.
- x – The vector for which you want to compute the min value.
- na.rm – (Optional argument) Indicates whether to remove missing values before computing the minimum. It is
FALSE
by default.
The min()
function returns the min value in the passed vector.
Examples
Let’s look at some examples of using the above method to get the min value in a list.
Minimum value in a list of numbers
First, let’s see what happens if we directly apply the min()
function to a list without converting it to a vector.
# create a list of numbers ls <- list(1, 3, 5, 4) # min value in list min(ls)
Output:
Error in min(ls): invalid 'type' (list) of argument
You can see that we get an error. This is because we cannot apply the min()
function in R directly to a list.
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.
Now let’s use the above syntax, that is, first convert the list to a vector using unlist()
and then apply the min()
function.
# create a list of numbers ls <- list(1, 3, 5, 4) # min value in list min(unlist(ls))
Output:
1
We get 1 as the minimum value in the above list, which is the correct answer.
What would happen if there are some NA
present values in the list?
Let’s find out.
First, we will create a list with some NA
values and then apply the same syntax as above without any additional arguments.
# create a list with NA values ls <- list(1, 3, NA, 5, NA, 4, NA) # min value in the list min(unlist(ls))
Output:
<NA>
You can see that we get NA
as the output. This is because comparing a value with NA results in an NA
in R.
Minimum in a list with NA
values
You can pass TRUE
to the na.rm
parameter of the min()
function to exclude missing values when computing the minimum value in a vector. This will ignore the NA
values and compute the minimum from the remaining values.
# create a list with NA values ls <- list(1, 3, NA, 5, NA, 4, NA) # min value in the list min(unlist(ls), na.rm=TRUE)
Output:
1
Now we get the minimum value in the above list as 1.
Minimum value in a character list
The above syntax also works similarly for a list of characters. For example, let’s see what we get on applying it to a list of characters.
# create a list of chracters ls <- list("a", "b", "c", "d") # min value in the list min(unlist(ls))
Output:
'a'
Here, we get ‘a’ as the minimum value in the above list which contains the values ‘a’, ‘b’, ‘c’, and ‘d’.
You might also be interested in –
- Get the Maximum value in an R Vector
- How to Create a List in R?
- 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.