Hi there,
again congratulations for this package!
I have noticed that per default the t-test used in the package per default not assumes equal variances (Welch) while normally one would assume equal variances (Student).
Welch two sample t-test the r syntax would be:
t.test(x~y)
This test does not assume equal variances.
Students t-test syntax is:
t.test(x~y, var.equal=TRUE)
Another thing with the Chi square test used in the package:
The default in the package uses Yates continuity correction. The syntax is: > chisq.test(x, y).
However I would like to use Chi Square without correction. The syntax is > chisq.test(x, y, correct=FALSE)
Is there a way to specify these things in de compareGroups command?
Greetings,
Oli