lapply {base} | R Documentation |
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
.
sapply
is a “user-friendly” version of lapply
also
accepting vectors as x
, and returning a vector or array with
dimnames
if appropriate.
lapply(x, fun, ...)
sapply(x, fun, ..., simplify = TRUE)
x |
list (or vector for |
fun |
the function to be applied.
In the case of functions like |
... |
optional arguments to |
simplify |
logical; should the result be simplified to a vector if possible? |
apply
, tapply
.
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)
sapply(x, quantile)
sapply(sapply(3:9, seq), fivenum)