[R] sd, mean with a frequency distribution matrix
JS Huang
js.huang at protective.com
Wed Feb 18 03:29:52 CET 2015
Hi,
Just learned another way to calculate sd for a frequency distribution
matrix:
> p <- matrix(c(10,3,20,4,30,5),ncol=2,byrow=TRUE)
> p
[,1] [,2]
[1,] 10 3
[2,] 20 4
[3,] 30 5
> rep(p[,1],p[,2])
[1] 10 10 10 20 20 20 20 30 30 30 30 30
> sd(rep(p[,1],p[,2]))
[1] 8.348471
--
View this message in context: http://r.789695.n4.nabble.com/sd-mean-with-a-frequency-distribution-matrix-tp4703218p4703441.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list