The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Calculates the minimal sample size for the Wilcoxon-Mann-Whitney test that is needed for a given power and two sided type I error rate. The method works for metric data with and without ties, count data, ordered categorical data, and even dichotomous data. But data is needed for the reference group to generate synthetic data for the treatment group based on a relevant effect. For details, see for example [1] or [2].
To install the current development version:
## install devtools package if it's not already
if (!requireNamespace("devtools", quietly = TRUE)) {
install.packages("devtools")
}# install package
::install_github("happma/WMWssp")
devtoolslibrary(WMWssp)
To calculate the sample size we need prior information from one group. Let us call this group reference group. Based on this reference group, we can create artifical data according to an interpretable effect. Note that we have to specify, how many subjects should be assigned to the first and how many to the second group.
# Prior information for the reference group
<- c(315,375,356,374,412,418,445,403,431,410,391,475,379)
x # generate data for treatment group based on a shift effect
<- x - 20
y
# calculate sample size
<- WMWssp(x, y, alpha = 0.05, power = 0.8, t = 1/2)
ssp summary(ssp)
It is also possible to vary the allocation rate to even further reduce the sample size. But for almost all situations, a balanced design will be optimal or close to optimal, see [2] or [3].
# calculate optimal allocation rate t
<- WMWssp_minimize(x, y, alpha = 0.05, power = 0.8)
ssp summary(ssp)
[1] Brunner, E., Bathke A. C. and Konietschke, F: Rank- and Pseudo-Rank Procedures in Factorial Designs - Using R and SAS, Springer Verlag, to appear,
[3] Bürkner, P‐C, Doebler, P, Holling, H. Optimal design of the Wilcoxon–Mann–Whitney‐test. Biom J. 2017; 59( 1): 25‐ 40.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.