View source: R/sym_interval_umap.R
sym.umap | R Documentation |
This function applies the UMAP algorithm to a symbolic data table.
sym.umap(sym.data, ...)
## S3 method for class 'symbolic_tbl'
sym.umap(
sym.data = NULL,
config = umap::umap.defaults,
method = c("naive", "umap-learn"),
preserve.seed = TRUE,
...
)
sym.data |
symbolic data table |
... |
list of settings; values overwrite defaults from config; see documentation of umap.default for details about available settings |
config |
object of class umap.config |
method |
character, implementation. Available methods are 'naive' (an implementation written in pure R) and 'umap-learn' (requires python package 'umap-learn') |
preserve.seed |
logical, leave TRUE to insulate external code from randomness within the umap algorithms; set FALSE to allow randomness used in umap algorithms to alter the external random-number generator |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.