Perform t-SNE decomposition using Rtsne::Rtsne
d.TSNE(x, k = 3, initial.dims = 50, perplexity = 15, theta = 0,
check.duplicates = TRUE, pca = TRUE, max.iter = 1000,
scale = FALSE, center = FALSE, is.distance = FALSE,
verbose = TRUE, outdir = "./")Input matrix
Integer. Number of t-SNE components required
Integer: Number of dimensions to retain in initial PCA. Default = 50
Numeric: Perplexity parameter
Float: 0.0: exact TSNE. Increase for higher speed, lower accuracy. Default = 0
Logical: If TRUE, Checks whether duplicates are present. Best to set test manually
Logical: If TRUE, perform initial PCA step. Default = TRUE
Integer: Maximum number of iterations. Default = 1000
Logical: If TRUE, scale before running t-SNE using base::scale. Default = FALSE
Logical: If TRUE, and scale = TRUE, also center. Default = FALSE
Logical: If TRUE, x should be a distance matrix. Default = FALSE
Logical: If TRUE, print messages to output
Path to output directory
Options for Rtsne::Rtsne
rtDecom object
Other Decomposition: d.CUR,
d.H2OAE, d.H2OGLRM,
d.ICA, d.ISOMAP,
d.KPCA, d.LLE,
d.MDS, d.NMF,
d.PCA, d.SPCA,
d.SVD, d.UMAP