omxApply | R Documentation |
If the snowfall library is loaded, then this function calls sfApply
. Otherwise it invokes apply
.
omxApply(x, margin, fun, ...)
x |
a vector (atomic or list) or an expressions vector. Other objects (including classed objects) will be coerced by |
margin |
a vector giving the subscripts which the function will be applied over. |
fun |
the function to be applied to each element of |
... |
optional arguments to |
omxLapply
, omxSapply
x <- cbind(x1 = 3, x2 = c(4:1, 2:5))
dimnames(x)[[1]] <- letters[1:8]
omxApply(x, 2, mean, trim = .2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.