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
This may prove to be more complicated than adding the confidence parameter to the T-test function, mostly because the pg.wilcoxon function is actually a wrapper around scipy.stats.wilcoxon, and therefore most of the computation are done within SciPy (and Pingouin does not have access to the intermediate steps, just the final output).
I'll try to work on this within the next few months, unless someone else wants to submit a PR.
In R,
wilcox.test(A, B, paired=T, conf.int=T)
also returns a confidence interval for the difference in median values.I can't seem to find an equivalent with
pg.wilcoxon()
.The text was updated successfully, but these errors were encountered: