colSds | R Documentation |
Produces the same result as apply(x, 1, sd)
or apply(x, 2, sd)
without coercing matrix to dense matrix. Values are not identical to
sd
because of the floating point precision issue in C++.
colSds(x)
rowSds(x)
x |
matrix or Matrix object |
mt <- Matrix::rsparsematrix(100, 100, 0.01)
colSds(mt)
apply(mt, 2, sd) # the same
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.