Skip to content
Prev 222425 / 398500 Next

median test

On Fri, May 28, 2010 at 6:58 AM, linda Porz <linda.porz at gmail.com> wrote:
**Disclaimer: I have no idea what your data represents or how
(in)appropriate any of these tests may be**

R can do the tests you mentioned (and many more).

Wilcoxon test:
wilcox.test(x=group1, y=group2, paired=FALSE)
see ?wilcox.test

For testing the distribution look at:
?ks.test and ?pcauchy
The code might be something along the lines of:
ks.test(x=yourdata, y="pcauchy")

Again I want to stress that you should know your data and what tests
you are doing and why you are doing them.  R will do just about
whatever you want, including many things that you probably should not
do.

Josh