episcanpy.tl.tsne

episcanpy.tl.tsne(adata, n_pcs=None, use_rep=None, perplexity=30, early_exaggeration=12, learning_rate=1000, random_state=0, use_fast_tsne=True, n_jobs=None, copy=False)

t-SNE [Maaten08] [Amir13] [Pedregosa11].

t-distributed stochastic neighborhood embedding (tSNE) [Maaten08] has been proposed for visualizating single-cell data by [Amir13]. Here, by default, we use the implementation of scikit-learn [Pedregosa11]. You can achieve a huge speedup and better convergence if you install Multicore-tSNE by [Ulyanov16], which will be automatically detected by Scanpy.

Parameters
adata : AnnData

Annotated data matrix.

{doc_n_pcs}

{use_rep}

perplexity : float, optional (default: 30)

The perplexity is related to the number of nearest neighbors that is used in other manifold learning algorithms. Larger datasets usually require a larger perplexity. Consider selecting a value between 5 and 50. The choice is not extremely critical since t-SNE is quite insensitive to this parameter.

early_exaggeration : float, optional (default: 12.0)

Controls how tight natural clusters in the original space are in the embedded space and how much space will be between them. For larger values, the space between natural clusters will be larger in the embedded space. Again, the choice of this parameter is not very critical. If the cost function increases during initial optimization, the early exaggeration factor or the learning rate might be too high.

learning_rate : float, optional (default: 1000)

Note that the R-package “Rtsne” uses a default of 200. The learning rate can be a critical parameter. It should be between 100 and 1000. If the cost function increases during initial optimization, the early exaggeration factor or the learning rate might be too high. If the cost function gets stuck in a bad local minimum increasing the learning rate helps sometimes.

random_state : int or None, optional (default: 0)

Change this to use different intial states for the optimization. If None, the initial state is not reproducible.

use_fast_tsne : bool, optional (default: True)

Use the MulticoreTSNE package by D. Ulyanov if it is installed.

n_jobs : int or None (default: sc.settings.n_jobs)

Number of jobs.

copy : bool (default: False)

Return a copy instead of writing to adata.

Returns

Depending on copy, returns or updates adata with the following fields.

X_tsnenp.ndarray (adata.obs, dtype float)

tSNE coordinates of data.