View source: R/matwasserstein.R
matwasserstein | R Documentation |
Computes the matrix of the 2-Wassterstein distances between several multivariate (p > 1
) or univariate (p = 1
) Gaussian densities, given samples.
matwasserstein(x)
x |
object of class "folder" containing the data. Its elements have only numeric variables (observations of the probability densities). If there are non numeric variables, there is an error. |
Positive symmetric matrix whose order is equal to the number of densities, consisting of the pairwise 2-Wassterstein distance between the Gaussian densities.
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
matwassersteinpar
if the parameters of the Gaussian densities are known.
data(roses)
# Multivariate:
X <- as.folder(roses[,c("Sha","Den","Sym","rose")], groups = "rose")
summary(X)
matwasserstein(X)
# Univariate :
X1 <- as.folder(roses[,c("Sha","rose")], groups = "rose")
summary(X1)
matwasserstein(X1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.