colVars {resample} | R Documentation |
Column variances and standard deviations for matrices.
Description
Quick and dirty function for column variances and standard deviations.
Usage
colVars(x, na.rm = FALSE)
colStdevs(x, ...)
Arguments
x |
data frame, matrix, or vector. These versions do not support higher-dimensional arrays. |
na.rm |
logical. Should missing values (including |
... |
other arguments passed to |
Value
A numeric or complex array of suitable size, or a vector if the result is
one-dimensional. The dimnames
(or names
for a vector
result) are taken from the original array.
Note
There are better versions of these functions in the aggregate package
https://www.timhesterberg.net/r-packages.
Author(s)
Tim Hesterberg timhesterberg@gmail.com,
https://www.timhesterberg.net/bootstrap-and-resampling
See Also
Examples
x <- matrix(rnorm(12), 4)
colVars(x)
colStdevs(x)
[Package resample version 0.6 Index]