lapply(x, fun, ...) sapply(x, fun, ..., simplify = TRUE)
x
|
list (or vector for sapply ) 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 .
|
simplify
| logical; should the result be simplified to a vector if possible? |
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.
apply
, tapply
.