2-Wasserstein distance calculation

Background

The 2-Wasserstein distance W is a metric to describe the distance between two distributions, representing e.g. two different conditions A and B.

For continuous distributions, it is given by

$$W := W(F_A, F_B) = \bigg( \int_0^1 \big|F_A^{-1}(u) - F_B^{-1}(u) \big|^2 du \bigg)^\frac{1}{2},$$

where FA and FB are the corresponding cumulative distribution functions (CDFs) and FA−1 and FB−1 the respective quantile functions.

We specifically consider the squared 2-Wasserstein distance d := W2 which offers the following decomposition into location, size, and shape terms: $$d := d(F_A, F_B) = \int_0^1 \big|F^{-1}(u) - F^{-1}(u) \big|^2 du = \underbrace{\big(\mu_A - \mu_B\big)^2}_{\text{location}} + \underbrace{\big(\sigma_A - \sigma_B\big)^2}_{\text{size}} + \underbrace{2\sigma_A \sigma_B \big(1 - \rho^{A,B}\big)}_{\text{shape}},$$

where μA and μB are the respective means, σA and σB are the respective standard deviations, and ρA, B is the Pearson correlation of the points in the quantile-quantile plot of FA and FB.

Usage in two-sample setting

In case the distributions FA and FB are not explicitly given and information is only availbale in the form of samples from FA and FB, respectively, we use the corresponding empirical CDFs A and B. Then, the 2-Wasserstein distance is computed by

$$d(\hat{F}_A, \hat{F}_B) \approx \frac{1}{K} \sum_{k=1}^K \big(Q_A^{\alpha_k} - Q_B^{\alpha_k} \big) \approx \big(\hat{\mu}_A - \hat{\mu}_B\big)^2 + \big(\hat{\sigma}_A - \hat{\sigma}_B\big)^2 + 2\hat{\sigma}_A \hat{\sigma}_B \big(1 - \hat{\rho}^{A,B}\big).$$

Here, QA and QB denote equidistant quantiles of FA and FB, respectively, at the levels $\alpha_k := \frac{k-0.5}{K}, k = 1, \dots , K$, where we use K := 1000 in our implementation. Moreover, μ̂A, μ̂B, σ̂A, σ̂B and ρ̂A, B denote the empirical versions of the corresponding quantities.

Three implementations

The waddR package offers three functions to compute the 2-Wasserstein distance in two-sample settings.

We will use samples from normal distributions to illustrate them.

library(waddR)

set.seed(24)
x <- rnorm(100,mean=0,sd=1)
y <- rnorm(100,mean=2,sd=1)

The first function, wasserstein_metric, offers a faster reimplementation in C++ of the wasserstein1d function from the R package transport, which is able to compute general p-Wasserstein distances. For p = 2, we obtain the 2-Wasserstein distance W.

wasserstein_metric(x,y,p=2)
#> [1] 2.044457

The corresponding value of the squared 2-Wasserstein distance d is then computed as:

wasserstein_metric(x,y,p=2)^2
#> [1] 4.179803

The second function, squared_wass_approx, computes the squared 2-Wasserstein distance by calculating the mean squared difference of the equidistant quantiles (first approximation in the previous formula). This function is currently used to compute the 2-Wasserstein distances in the testing procedures.

squared_wass_approx(x,y)
#> [1] 4.179803

The third function, squared_wass_decomp, approximates the squared 2-Wasserstein distance using the location, size, and shape terms from the above decomposition (second apporximation in the previous formula). It also returns the respective decomposition values.

squared_wass_decomp(x,y)
#> $distance
#> [1] 4.180458
#> 
#> $location
#> [1] 4.114983
#> 
#> $size
#> [1] 0.002307
#> 
#> $shape
#> [1] 0.06316766

In the considered example, the decomposition results suggest that the two distributions differ with respect to location (mean), but not in terms of size and shape, thus confirming the underlying normal model.

See also

Session Info

sessionInfo()
#> R version 4.4.1 (2024-06-14)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04 LTS
#> 
#> Matrix products: default
#> BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so;  LAPACK version 3.12.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: Etc/UTC
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] waddR_1.19.0   rmarkdown_2.28
#> 
#> loaded via a namespace (and not attached):
#>  [1] SummarizedExperiment_1.35.1 xfun_0.47                  
#>  [3] bslib_0.8.0                 Biobase_2.65.0             
#>  [5] lattice_0.22-6              vctrs_0.6.5                
#>  [7] tools_4.4.1                 generics_0.1.3             
#>  [9] stats4_4.4.1                curl_5.2.1                 
#> [11] parallel_4.4.1              tibble_3.2.1               
#> [13] fansi_1.0.6                 RSQLite_2.3.7              
#> [15] blob_1.2.4                  pkgconfig_2.0.3            
#> [17] Matrix_1.7-0                arm_1.14-4                 
#> [19] dbplyr_2.5.0                S4Vectors_0.43.2           
#> [21] lifecycle_1.0.4             GenomeInfoDbData_1.2.12    
#> [23] compiler_4.4.1              codetools_0.2-20           
#> [25] eva_0.2.6                   GenomeInfoDb_1.41.1        
#> [27] htmltools_0.5.8.1           sys_3.4.2                  
#> [29] buildtools_1.0.0            sass_0.4.9                 
#> [31] yaml_2.3.10                 nloptr_2.1.1               
#> [33] crayon_1.5.3                pillar_1.9.0               
#> [35] jquerylib_0.1.4             MASS_7.3-61                
#> [37] BiocParallel_1.39.0         SingleCellExperiment_1.27.2
#> [39] DelayedArray_0.31.11        cachem_1.1.0               
#> [41] boot_1.3-30                 abind_1.4-5                
#> [43] nlme_3.1-166                tidyselect_1.2.1           
#> [45] digest_0.6.37               purrr_1.0.2                
#> [47] dplyr_1.1.4                 splines_4.4.1              
#> [49] maketools_1.3.0             fastmap_1.2.0              
#> [51] grid_4.4.1                  SparseArray_1.5.31         
#> [53] cli_3.6.3                   magrittr_2.0.3             
#> [55] S4Arrays_1.5.7              utf8_1.2.4                 
#> [57] withr_3.0.1                 filelock_1.0.3             
#> [59] UCSC.utils_1.1.0            bit64_4.0.5                
#> [61] XVector_0.45.0              httr_1.4.7                 
#> [63] matrixStats_1.3.0           lme4_1.1-35.5              
#> [65] bit_4.0.5                   coda_0.19-4.1              
#> [67] memoise_2.0.1               evaluate_0.24.0            
#> [69] knitr_1.48                  GenomicRanges_1.57.1       
#> [71] IRanges_2.39.2              BiocFileCache_2.13.0       
#> [73] rlang_1.1.4                 Rcpp_1.0.13                
#> [75] glue_1.7.0                  DBI_1.2.3                  
#> [77] BiocGenerics_0.51.0         minqa_1.2.8                
#> [79] jsonlite_1.8.8              R6_2.5.1                   
#> [81] MatrixGenerics_1.17.0       zlibbioc_1.51.1