We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add simple wilcox report for us, who need non parrametric tests as well :)
> smaller_iris <- iris[iris$Species %in% c("virginica", "setosa"),] > wilcox.test(smaller_iris$Sepal.Length ~ smaller_iris$Species) Wilcoxon rank sum test with continuity correction data: smaller_iris$Sepal.Length by smaller_iris$Species W = 38.5, p-value < 2.2e-16
to output Z = 38.5, p < .01
The text was updated successfully, but these errors were encountered:
I might have a look into that myself when I have some time, your code is well written, shouldn't be an issue to add this function
Sorry, something went wrong.
Will take a look into that when I have some spare time.
No branches or pull requests
Add simple wilcox report for us, who need non parrametric tests as well :)
to output Z = 38.5, p < .01
The text was updated successfully, but these errors were encountered: