I am using in my code colSums
but I also need the standard deviation beside the sum.
I searched in the internet and found this page which contain only:
colSums
colMeans
http://stat.ethz.ch/R-manual/R-devel/library/base/html/colSums.html
I tried this:
colSd
but I got this error:
Error: could not find function "colSd"
How I can do the same thing but for standard deviation:
colSd
Here is the code:
results <- colSums(x,na.rm=TRUE)#### here I want colsd
sapply(x, sd)
or more general,apply(x, 2, sd)
. – Gratificationnumcolwise
function from theplyr
package for this type of thing. – FitecolMeans
andcolSums
are much faster thanapply(X, 2, ...)
counterparts... – Valval