vapply1c | R Documentation |
These functions are short wrappers around typical vapply
calls for easier
development.
vapply1c(X, FUN, ..., USE.NAMES = FALSE)
vapply1d(X, FUN, ..., USE.NAMES = FALSE)
vapply1l(X, FUN, ..., USE.NAMES = FALSE)
X |
a vector (atomic or |
FUN |
the |
... |
optional arguments to |
USE.NAMES |
|
vapply1c
returns a vector of character
s of length X
.
vapply1d
returns a vector of double
s of length X
.
vapply1l
returns a vector of logical
s of length X
.
Sebastian Gibb
Other helper functions for developers:
between()
,
isPeaksMatrix()
,
rbindFill()
,
validPeaksMatrix()
,
which.first()
l <- list(a=1:3, b=4:6)
vapply1d(l, sum)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.