Skip to content
Prev 173713 / 398502 Next

print median and sd...

johnhj wrote:
Hi John,
Try this, it may be what you want:

library(prettyR)
testmat<-matrix(sample(1:10,50,TRUE),ncol=5)
testmedians<-describe(testmat,num.desc="median",xname="testmat")
plot(testmedians[[1]],type="l")

Jim