comptsne {RaceID} | R Documentation |
Computation of a two dimensional t-SNE representation
Description
This functions performs the computation of a t-SNE map from the distance object in slot distances
using the Rtsne package.
Usage
comptsne(
object,
dimRed = FALSE,
initial_cmd = TRUE,
perplexity = 30,
rseed = 15555
)
Arguments
object |
|
dimRed |
logical. If |
initial_cmd |
logical. If |
perplexity |
Positive number. Perplexity of the t-SNE map. Default is |
rseed |
Integer number. Random seed to enforce reproducible t-SNE map. |
Value
SCseq
object with t-SNE coordinates stored in slot tsne
.
Examples
sc <- SCseq(intestinalDataSmall)
sc <- filterdata(sc)
sc <- compdist(sc)
sc <- clustexp(sc)
sc <- findoutliers(sc)
sc <- comptsne(sc)
[Package RaceID version 0.3.5 Index]