d_Isomap | R Documentation |
Perform ISOMAP decomposition using vegan::isomap
d_Isomap(
x,
k = 2,
dist.method = "euclidean",
nsd = 0,
path = c("shortest", "extended"),
center = TRUE,
scale = TRUE,
verbose = TRUE,
n.cores = rtCores,
...
)
x |
Input data |
k |
Integer vector of length 1 or greater. Rank of decomposition |
dist.method |
Character: Distance calculation method. See |
nsd |
Integer: Number of shortest dissimilarities retained |
path |
Character: The |
center |
Logical: If TRUE, center data prior to decomposition. Default = TRUE |
scale |
Logical: If TRUE, scale data prior to decomposition. Default = TRUE |
verbose |
Logical: If TRUE, print messages to output |
n.cores |
Integer: Number of cores to use |
... |
Additional parameters to be passed to |
Project scaled variables to ISOMAP components Input must be n by p, where n represents number of cases, and p represents number of features. ISOMAP will be applied to the transpose of the n x p matrix.
rtDecom
object
E.D. Gennatas
Other Decomposition:
d_H2OAE()
,
d_H2OGLRM()
,
d_ICA()
,
d_KPCA()
,
d_LLE()
,
d_MDS()
,
d_NMF()
,
d_PCA()
,
d_SPCA()
,
d_SVD()
,
d_TSNE()
,
d_UMAP()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.