squared_wass_approx | R Documentation |
Calculates an approximated squared 2-Wasserstein distance based on the mean squared difference between 1000 equidistant
quantiles corresponding to the empirical distributions of two input vectors x
and y
squared_wass_approx(x, y)
x |
sample (vector) representing the distribution of condition |
y |
sample (vector) representing the distribution of condition |
The approximated squared 2-Wasserstein distance between x
and y
Schefzik, R., Flesch, J., and Goncalves, A. (2020). waddR: Using the 2-Wasserstein distance to identify differences between distributions in two-sample testing, with application to single-cell RNA-sequencing data.
See the functions wasserstein_metric
and squared_wass_decomp
for
alternative implementations of the 2-Wasserstein distance
set.seed(24)
x<-rnorm(100)
y1<-rnorm(150)
y2<-rexp(150,3)
y3<-rpois(150,2)
squared_wass_approx(x,y1)
squared_wass_approx(x,y2)
squared_wass_approx(x,y3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.