| register_umap {seriation} | R Documentation |
Use uniform manifold approximation and projection (UMAP) to embedd the data on the number line and create a seriation order.
register_umap()
Registers the method "umap" for seriate. This method applies
1D UMAP to data represented by a distance matrix
and extracts the order from the 1D embedding.
Note: Package umap needs to be installed.
McInnes, L, Healy, J, UMAP: Uniform Manifold Approximation and Projection for Dimension Reduction, ArXiv e-prints 1802.03426, 2018
## Not run:
register_umap()
get_seriation_method("dist", "umap")
d <- dist(random.robinson(50, pre=TRUE, noise=.1))
o <- seriate(d, method = "umap")
pimage(d, o)
## End(Not run)