You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using the psycho package to retrieve summary stats and publishable info of the t-test for my manuscripts, I wondered if this can be extended to include the Wilcoxon rank sum test, please?
Many thanks
Mark Thomas
The text was updated successfully, but these errors were encountered:
Wilcoxon's rand sum test is not implemented yet, as I have no experience with it and its reporting. Nevertheless, I believe extending the analyze function to support it could be done quite easily.
As a wilcoxon test belongs to the "htest" class, its method should go in the analyze.htestmethod.
As you can see in the related file, from line 51 to 71, it takes care of the "correlation" subclass. Below, of the t-test.
Therefore, one could easily add a else if (grepl("Wilcoxon", values$method)) (if there is the word Wilcoxon in the method name), and then add below the specific text formatting code.
@r-sonist Feel free to try implementing it if you want, it could be a useful feature :)
Hi all,
I have been using the psycho package to retrieve summary stats and publishable info of the t-test for my manuscripts, I wondered if this can be extended to include the Wilcoxon rank sum test, please?
Many thanks
Mark Thomas
The text was updated successfully, but these errors were encountered: