Rfast (version 1.7.3)

Column and row-wise variances and standard deviations: Column and row-wise variances and standard deviations of a matrix

Description

Column and row-wise variances and standard deviations of a matrix

Usage

colVars(x, suma = NULL, std = FALSE) rowVars(x, suma = NULL, std = FALSE)

Arguments

x
A matrix with the data.
suma
If you already have the column sums vector supply it, otherwise leave it NULL.
std
A boolean variable specyfying whether you want the variances (FALSE) or the standard deviations (TRUE) of each column.

Value

A vector with the colum variances or standard deviations.

Details

We found this in stackoverflow and was created by David Arenburg. We then modified the function to match the sums type formula of the variance, which is faster.

Examples

Run this code
x <- matrix( rnorm(100 * 10000), ncol = 10000 )
system.time( a1 <- apply(x, 2, var) )
system.time( a2 <- colVars(x) )
all.equal(as.vector(a1), as.vector(a2))

Run the code above in your browser using DataCamp Workspace