VOOZH about

URL: https://www.geeksforgeeks.org/r-language/looping-over-objects-in-r-programming/

⇱ Looping over Objects in R Programming - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Looping over Objects in R Programming

Last Updated : 12 Jul, 2025

One of the biggest issues with the β€œfor” loop is its memory consumption and its slowness in executing a repetitive task. When it comes to dealing with a large data set and iterating over it, a for loop is not advised. 

In this article we will discuss How to loop over a list in R Programming Language provides many alternatives to be applied to vectors for looping operations that are pretty useful when working interactively on a command line.

function and its variants:

  • apply()
  • lapply()
  • sapply()
  • tapply()
  • mapply()

Let us see what each of these functions does.

apply(): This function applies a given function over the margins of a given array.

Looping FunctionOperation
apply()Applies a function over the margins of an array or matrix
lapply()Apply a function over a list or a vector
sapply()Same as lapply() but with simplified results
tapply()Apply a function over a ragged array
mapply()Multivariate version of lapply()

apply(): This function applies a given function over the margins of a given array.

apply(array, margins, function, ...) array = list of elements margins = dimension of the array along which the function needs to be applied function = the operation which you want to perform

Output:

[, 1] [, 2] [, 3]
[1, ] 1 4 7
[2, ] 2 5 8
[3, ] 3 6 9

[1] 12 15 18
[1] 6 15 24

lapply(): This function is used to apply a function over a list. It always returns a list of the same length as the input list.

lapply(list, function, ...)
list = Created list
function = the operation which you want to perform

Output:

[[1]]
[1] 0

[[2]]
[1] 5.329071e-15

sapply(): This function is used to simplify the result of lapply(), if possible. Unlike lapply(), the result is not always a list. The output varies in the following ways:-

sapply(list, function, ...)
list = Created list
function = the operation which you want to perform

Output:

a b
3 8

A vector is returned since the output had a list with elements of length 1.

  • If output is a list containing elements having length 1, then a vector is returned.
  • If output is a list where all the elements are vectors of same length(>1), then a matrix is returned.
  • If output contains elements which cannot be simplified or elements of different types, a list is returned.

tapply(): This function is used to apply a function over subset of vectors given by a combination of factors.

tapply(vector, factor, function, ...)
vector = Created vector
factor = Created factor
function = the operation which you want to perform

Output:

1 2 3 
10 18 17

How does the above code work?

πŸ‘ Image


mapply(): It's a multivariate version of lapply(). This function can be applied over several list simultaneously.

mapply(function, list1, list2, ...)
function = the operation which you want to perform
list1, list2= Created lists.

Output:

[1] 24

Loop Through List & Display All Sub-Elements on Same Line

Output:

1 2 3 4 5 

Loop Through List & Display All Sub-Elements on Different Lines

Output:

1 
2
3
4
5

Loop Through List and Only Display Specific Values

Output:

2 
4

First we creates a list my_list with values from 1 to 5. It then iterates through each element using a for loop, and if the element is even (determined by element %% 2 == 0), it is printed on a new line using cat. The output displays only the even values (2 and 4) from the list.

Comment
Article Tags:

Explore