Skip to content
Prev 180653 / 398525 Next

data summary and some automated t.tests.

You might want to try using a non-parametric test, such as wilcox.test.

How about some modification of the following:

d=data.frame(grp=rep(1:2,e=5),replicate(10,rnorm(100))); head(d)
lapply(d[,-1],function(.column)wilcox.test(.column~grp,data=d))

David Freedman
stephen sefick wrote: