View source: R/costWasserMatchingEllipse.R
costWasserMatchingEllipse | R Documentation |
Calculates a similarity distance based on the 2-Wassertein distance between mixtures of multivariate normal distributions.
costWasserMatchingEllipse(
test.cytometry,
training.cytometries,
equal.weights = FALSE
)
test.cytometry |
A clusetering represented as a list of clusters. Each cluster is a list with elements mean, cov, weight and type. |
training.cytometries |
A list of clusterings with the same format as test.cytometry. |
equal.weights |
If True, weights assigned to every cluster in a partion are uniform (1/number of clusters) when calculating the similarity distance. If False, weights assigned to clusters are the proportions of points in every cluster compared to the total amount of points in the partition. |
A vector representing the similarity distance between test.cytometry and the elements in training.cytometries.
E del Barrio, H Inouzhe, JM Loubes, C Matran and A Mayo-Iscar. (2019) optimalFlow: Optimal-transport approach to flow cytometry gating and population matching. arXiv:1907.08006
partition1 <- list(list(mean = c(1, 1), cov = diag(1, 2), weight = 0.5, type = '1'),
list(mean = c(-1, -1), cov = diag(1, 2), weight = 0.5, type = '2'))
partition2 <- list(list(list(mean = c(1, -1), cov = diag(1, 2),
weight = 0.5, type = '1'), list(mean = c(-1, 1), cov = diag(1, 2), weight = 0.5, type = '2')))
costWasserMatchingEllipse(partition1, partition2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.