Description Usage Arguments Value References See Also Examples
Approximation of the squared wasserstein distance. Calculation based on the mean squared difference between the equidistant empirical quantiles of the two input vectors a and b. As an approximation of the quantile function, 1000 quantiles are computed for each vector.
1 | squared_wass_approx(x, y)
|
x |
Vector representing an empirical distribution under condition A |
y |
Vector representing an empirical distribution under condition B |
The approximated squared wasserstein distance between x and y
Schefzik and Goncalves 2019
[wasserstein_metric()], [squared_wass_decomp()] for different implementations of the wasserstein distance
1 2 3 4 5 6 | # input: one dimensional data in two conditions
x <- rnorm(100, 42, 2)
y <- c(rnorm(61, 20, 1), rnorm(41, 40,2))
# output: The squared Wasserstein distance approximated as described in
# Schefzik and Goncalves 2019
d.wass.approx <- squared_wass_approx(x,y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.