[ top | up ]

Apply a Function Over a List

Syntax

lapply(x, fun, ...)

Arguments

x the list to be used.
fun the function to be applied. In the case of functions like +, %*%, etc., the function name must be quoted.
... optional arguments to fun.

Description

lapply returns a list of the same length as x. Each element of which is the result of applying fun to the corresponding element of x.

See Also

apply, sapply

Examples

x <- list(a = 1:10, beta = exp(-3:3), logic = c(T,F,F,T)) # compute the list mean for each list element lapply(x,mean) # median and quartiles for each list element lapply(x, quantile, probs = 1:3/4)