Load the package hce
and check the version
library(hce)
packageVersion("hce")
#> [1] '0.5.0'
For citing the package run citation("hce")
(Samvel B. Gasparyan 2022).
Two treatment groups are compared using an ordinal endpoint and each comparison results in a win, loss, or a tie for the patient in the active group compared to a patient in the placebo group. All possible (overall) combinations are denoted by \(O\), with \(W\) denoted the total wins for the active group, \(L\) total losses, and \(T\) the total ties, so that \(O=W+L+T.\) Then the following quantities are called win statistics
Given the overall number of comparisons \(O,\) the win proportion \(WP\) and the win ratio \(WR\), it is possible to find the total number of wins and losses. Indeed, first the win odds can be found \(WO=\frac{WP}{WP+1}\) and
\[\begin{align*} &L = O*\frac{2WP-1}{WR-1},\nonumber\\ &W = WR*L = WR*O*\frac{2WP-1}{WR-1},\nonumber\\ &T=O-W-L = O*\left[1 - (WR+1)\frac{2WP-1}{WR-1}\right]. \end{align*}\]
The concept of win probability for the binary and continuous outcomes has been described in the paper by Buyse (2010) as “proportion in favor of treatment” (see also Rauch et al. (2014)), while in Verbeeck et al. (2021) it is called “probabilistic index”.
The concept of “win ratio” was introduced in Pocock et al. (2012), which, unlike the win odds, does not account for ties, whereas the win odds is the odds of winning, following G. Dong et al. (2020) (see also Peng (2020); Brunner, Vandemeulebroecke, and Mütze (2021); Samvel B. Gasparyan, Kowalewski, et al. (2021)). The same statistic was named as Mann-Whitney odds in O’Brien and Castelloe (2006). In Samvel B. Gasparyan, Folkvaljon, et al. (2021) the “win ratio” was used as a general term and included ties in the definition. Gaohong Dong et al. (2022) suggested to consider win ratio, win odds, and net benefit together as win statistics.
The function propWINS()
implements the formula above
args("propWINS")
#> function (WO, WR, Overall = 1)
#> NULL
propWINS(WO = 1.5, WR = 2)
#> WIN LOSS TIE TOTAL
#> 1 0.4 0.2 0.4 1
In case we have \(n_1=120\) patients
in the placebo group and \(n_2=150\) in
the active group and need to know given the win ratio and win odds above
how many wins and losses we will have for the active group then the
argument Overall
can be used to specify the number of all
comparisons
propWINS(WO = 1.25, WR = 1.5, Overall = 120*150)
#> WIN LOSS TIE TOTAL
#> 1 6000 4000 8000 18000