This method provides access to the 2d projections that are used to display results in the output report

# S4 method for Vision
getProjections(object)

Arguments

object

VISION object

Value

List of matrix (Cells x 2)

Examples

if (FALSE) {

# After running 'analyze'
# Retrieve tSNE30 (tSNE with perplexity 30) and plot it

tsne <- getProjections(vis)[["tSNE30"]]

plot(tsne[, 1], tsne[, 2])

# To see the names of available projections, just run:

names(getProjections(vis))

}