

   lapply {base}                                R Documentation

   AAppppllyy aa FFuunnccttiioonn oovveerr aa LLiisstt oorr VVeeccttoorr

   DDeessccrriippttiioonn::

        `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.

   UUssaaggee::

        lapply(X, FUN, ...)
        sapply(X, FUN, ..., simplify = TRUE, USE.NAMES = TRUE)

   AArrgguummeennttss::

          X: list or vector to be used.

        FUN: the function to be applied.  In the case of func-
             tions like `+', `%*%', etc., the function name
             must be quoted.

        ...: optional arguments to `FUN'.

   simplify: logical; should the result be simplified to a vec-
             tor if possible?

   USE.NAMES: logical; if `TRUE' and if `X' is character, use
             `X' as `names' for the result unless it had names
             already.

   SSeeee AAllssoo::

        `apply', `tapply'.

   EExxaammpplleess::

        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)
        str(i39 <- sapply(3:9, seq))# list of vectors
        sapply(i39, fivenum)

