lapply(x, fun, ...)
x
| the list to be used. | ||
fun
|
the function to be applied.
In the case of functions like +,
|
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.
Examples
# take the mean of each element of the list x
> lapply(x,mean)